I\'m trying to set a good environnement for doing some scientific stuff with python. To do so, I installed Jupyter & miniconda.
Then I want to be able to have di
This worked for me:
source activate {environment_name} python -m ipykernel install --user --name={environment_name};
Incase ipykernel is not installed, use this command:
conda install -c anaconda ipykernel