Skip to content

Instantly share code, notes, and snippets.

@dmikushin
Created April 30, 2020 13:02
Show Gist options
  • Save dmikushin/49ad8668a86138906999f0fff6d8091e to your computer and use it in GitHub Desktop.
Save dmikushin/49ad8668a86138906999f0fff6d8091e to your computer and use it in GitHub Desktop.
Jupyter deployment scripts
#!/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