ci_install.bat 638 B

123456789101112131415161718192021
  1. REM create jupyter base dir (needed for config retrieval)
  2. mkdir %USERPROFILE%\.jupyter
  3. REM Install and enable the server extension
  4. pip install -q --upgrade pip --user
  5. pip --version
  6. pip install jupyter_packaging
  7. REM Show a verbose install if the install fails, for debugging
  8. pip install -e ".[test]" || pip install -v -e ".[test]"
  9. jlpm versions
  10. jlpm config current
  11. jupyter server extension enable jupyterlab
  12. REM TODO: batch script grepping
  13. REM TODO: remove when we no longer support classic notebook
  14. jupyter serverextension enable jupyterlab
  15. REM TODO: batch script grepping
  16. IF "%GROUP%"=="integrity" (
  17. pip install notebook==4.3.1
  18. )