Answers for "jupyter notebook choose environment"

1

run jupyter notebook with specific environment

//first activate specific environment
activate <Name of environment>
//second launch jupyter notebook
jupyter notebook
Posted by: Guest on May-14-2021
0

check environment in jupyter notebook

conda create --name test_env
conda activate test_env
conda install -c anaconda ipykernel
python -m ipykernel install --user --name=test_env
Posted by: Guest on August-18-2021

Code answers related to "jupyter notebook choose environment"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language