On 2017-08-29 20:10, Bear Light wrote:
I found many rookies like me asking similar question: why "pip" is not
recognized by cmd?
I install Python 3.62 64bit in Win10 and I'm sure I add PATH, the Python
tutorial doesn't even mention about PATH.
You can see the following picture showing the tutorial doesn't work.

This newsgroup is text-only.

Please give a hand to the helpless rookies and me.

[image: 內置圖片 1]
tutorials url:
https://packaging.python.org/tutorials/installing-packages/#creating-virtual-environments

The best way is to use the Python "launcher" py.exe, which should be on the search path, so instead of, say:

    pip install regex

you would write:

    py -3.6 -m pip install regex

This ensures that it's installed into the correct version of Python (in this case v3.6).
--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to