Last active
August 8, 2023 05:22
-
-
Save hizkifw/e2b2ced38430d0ee5296aea4b6b13cad to your computer and use it in GitHub Desktop.
Create a Jupyter env
This file contains 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
#!/usr/bin/env bash | |
python -m venv venv | |
. ./venv/bin/activate | |
python -m pip install jupyter jupyterlab ipywidgets notebook numpy pandas scipy matplotlib Pillow seaborn tqdm | |
python -m jupyter lab |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment