travis_install.sh 492 B

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