travis_install.sh 670 B

12345678910111213141516171819
  1. #!/bin/bash
  2. npm install
  3. wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
  4. bash miniconda.sh -b -p $HOME/miniconda
  5. export PATH="$HOME/miniconda/bin:$PATH"
  6. hash -r
  7. conda config --set always_yes yes --set changeps1 no
  8. conda update -q conda
  9. conda info -a
  10. # install development version of notebook
  11. # https://github.com/jupyter/notebook/blob/master/.travis.yml
  12. git clone https://github.com/jupyter/notebook notebook-dev
  13. cd notebook-dev
  14. git clone --quiet --depth 1 https://github.com/minrk/travis-wheels travis-wheels
  15. pip install -f travis-wheels/wheelhouse .
  16. # create jupyter base dir (needed for config retreival)
  17. mkdir ~/.jupyter