Currently i have python2.7 with pip v9.0.1 routed on this location c:\python27\lib\site-packages (python 2.7)
Now when i installed python3.6 using installation wizard, it messed up. running python on cmd always refers to python3.
$ python
Python 3.6
>>>
To solve i need to do this:
$ set-alias py2 c:\python27\python.exe
$ set-alias py3 c:\python36\python.exe
Now how can i do the same way for pip? python3 has its own pip installed from the wizard. when running pip
and pip3
it always yield this result
$ pip
pip 9.0.1 from c:\python36\lib\site-packages (python 3.6)
$ pip3
pip 9.0.1 from c:\python36\lib\site-packages (python 3.6)