Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Python has native Conda Environment support, hence from within a notebook using the Kernel simply calling Conda will install any package correctly to the current environment. This has the added advantage (if this is a python-based project), of capturing your package installs within a Notebook for ease of re-reproducibility for others.

Image Modified

Anything Else

...

Code Block
languagebash
source activate /data/conda/<environment_name>
conda install -y <package>
# e.g 
# source activate /data/conda/myenv
# conda install -y numpy


Image Modified