Skip to content Skip to sidebar Skip to footer

How Avoid Anaconda To Hijack Pip

I have 2 versions of Python installed on my PC (Windows 7, 64Bit). Python 2.7 Version installed with Anaconda Python 3.6 Version installed directly from python.org (the 'regular I

Solution 1:

I think what you are looking for is pip3 install pip3 and you should be able install packages for python3

It should come as standard with python3 installation setup.

First check if it is there with

where pip3

For any further issues check this post

You don't need to uninstall anaconda2. Both python versions can co-exist and libraries different managed by different package installers pip for python 2 and pip3 for python 3 respectively.

Hope this answers your question.

Solution 2:

Install it with pip3, because you want it for python 3:

pip3 install numpy

Post a Comment for "How Avoid Anaconda To Hijack Pip"