Reputation: 21981
I created a conda environment using the instructions here: https://www.osc.edu/resources/getting_started/howto/howto_add_python_packages_using_the_conda_package_manager and now I need to add a python library to it. How do I edit the conda environment and add a single library?
Upvotes: 0
Views: 2190
Reputation: 18916
Start by activating the environment:
source activate {nameofenv}
or on windows activate {nameofenv}
After use conda install...
Upvotes: 1