Answers for "python virtual environment in jupyter notebook"

1

jupyter notebook virtualenv

$ python -m venv projectname
$ source projectname/bin/activate
(venv) $ pip install ipykernel
(venv) $ ipython kernel install --user --name=projectname
Posted by: Guest on January-13-2020
0

jupyter notebook create virtual environment

python -m venv myenv
Posted by: Guest on September-06-2021

Code answers related to "python virtual environment in jupyter notebook"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language