diff --git a/README.md b/README.md index 0bffa87..b94c6cc 100644 --- a/README.md +++ b/README.md @@ -45,3 +45,23 @@ Execute a cell by pressing `shift+enter`. The output will be displayed right und More on Jupyter Notebooks : https://www.dataquest.io/blog/jupyter-notebook-tutorial/ +## Manually making an environment visible + +Jupyter should auto-detect the environments, but if for some reason it does not you can manually add them. + +Go to the shell (see "Checkout environment") and type + +``` +conda info --envs +``` +to list the environments. Activate the environment you want to add by typing +``` +conda activate environment_name +``` +Then link the environment "environment_name" to your Jupyter kernel with label "my_environment_name" by running +``` +python -m ipykernel install --user --name=my_environment_name +``` +You should get the following response : +![add_env](images/manual_add_env.PNG) +Restart the Jupyter for Classes server and you should see the environment under the name you assigned. \ No newline at end of file diff --git a/images/manual_add_env.PNG b/images/manual_add_env.PNG new file mode 100644 index 0000000..008d1c1 Binary files /dev/null and b/images/manual_add_env.PNG differ