user308827
user308827

Reputation: 21981

Adding a new library to existing conda environment

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

Answers (1)

Anton vBR
Anton vBR

Reputation: 18916

Start by activating the environment:

source activate {nameofenv} or on windows activate {nameofenv}

After use conda install...

Upvotes: 1

Related Questions