jimme543
jimme543

Reputation: 11

Updating package on Anaconda environment

Is there a way to update only the django package on the python 3 environment to version 2.0?

My base version of python is 2.7.14. Anaconda 4.4.4. I created a new environment for python 3.6.3.

I installed django 1.11.8 (as this is the latest version available for python 2.7) on both environments but I need django 2.0 on my python 3 environment.

When I try:

conda install django=2.0

PackagesNotFoundError: The following packages are not available from current channels:

Current channels:

... with a few more similar links

Am I missing something? Is this even possible to do within an environment in the python 2 Anaconda?

Upvotes: 1

Views: 894

Answers (1)

Tom Lynch
Tom Lynch

Reputation: 913

Try this:

conda install django=2.0 -c conda-forge

That will use the conda-forge channel.

Upvotes: 1

Related Questions