Answers for "check environment in jupyter notebook"

7

add conda env to jupyter

source activate myenv
python -m ipykernel install --user --name myenv --display-name "Python (myenv)"
Posted by: Guest on May-11-2020
3

add conda environment to jupyter

python -m ipykernel install --user --name=firstEnv
Posted by: Guest on November-02-2020
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 "check environment in jupyter notebook"

Browse Popular Code Answers by Language