travis_install.sh 597 B

1234567891011121314151617181920
  1. #!/bin/bash
  2. # Copyright (c) Jupyter Development Team.
  3. # Distributed under the terms of the Modified BSD License.
  4. wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
  5. bash miniconda.sh -b -p $HOME/miniconda
  6. export PATH="$HOME/miniconda/bin:$PATH"
  7. hash -r
  8. conda config --set always_yes yes --set changeps1 no
  9. conda update -q conda
  10. conda info -a
  11. conda install jupyter
  12. # Install in-place and install the server extension
  13. pip install -e .
  14. jupyter serverextension enable --py jupyterlab
  15. # create jupyter base dir (needed for config retreival)
  16. mkdir ~/.jupyter