Python Forum
Pip apparently installed but unrecognized by CMD - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Pip apparently installed but unrecognized by CMD (/thread-9346.html)

Pages: 1 2


RE: Pip apparently installed but unrecognized by CMD - snippsat - Apr-04-2018

(Apr-04-2018, 03:44 PM)diegoctn Wrote: I know that I can have 2.7 and 3.6 in the same machine but can I install 3.6 in a machine that has already it?
Yes,is Path as explain over(that can be changes) that set version used from cmd.
In Editors(if not find it automatically) you point to installation(Interpreter setup) Path.


RE: Pip apparently installed but unrecognized by CMD - diegoctn - Apr-05-2018

Hi experts,

I installed python 3 as a new installation but when I run py -m V I retrieve C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python36_64\python.exe

It looks that it's keeping the first installation. Frustrating.


RE: Pip apparently installed but unrecognized by CMD - sparkz_alot - Apr-05-2018

Check you environmental settings again and make sure the new Python paths have been included. Since you already have a version of Python installed, you may be required to add a specifier to your commands, i.e python3, python36, python3.6 (try in the command terminal)in order to differentiate between the two.


RE: Pip apparently installed but unrecognized by CMD - snippsat - Apr-05-2018

Go into Environment Variables Path,delete path to Visual Studio python.
Look at image i posted before i have C:\python36 and C:\python36\Scripts as path to my Python.
Restart after this.
Test again from cmd with:
Microsoft Windows [Version 10.0.16299.309]
(c) 2017 Microsoft Corporation. Med enerett.

C:\Windows\System32>cd\

C:\>pip -V
pip 9.0.3 from c:\python36\lib\site-packages (python 3.6)

C:\>python -c "import sys; print(sys.executable)"
C:\python36\python.exe

C:\>