Created
April 30, 2020 13:02
-
-
Save dmikushin/49ad8668a86138906999f0fff6d8091e to your computer and use it in GitHub Desktop.
Jupyter deployment scripts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "Creating Jupyter environment in" $(pwd) | |
python3 -m venv ./.venv | |
sh -c "source .venv/bin/activate && pip3 install --upgrade pip && pip3 install jupyter && ipython kernel install --user --name=.venv" | |
echo "Created Jupyter environment in" $(pwd) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment