Windows下Python 3.7.1安装

为什么80%的码农都做不了架构师?>>>   hot3.png

犯贱偏爱绿色版本,所以下载了 Windows x86-64 embeddable zip file 版本,解压,发现没有Scripts目录,pip也没有。 解决如下:

  • 下载[get-pip]:
  • 运行Python get-pip.py
D:\working\Python>python get-pip.py
Collecting pip
  Using cached https://files.pythonhosted.org/packages/c2/d7/90f34cb0d83a6c5631cf71dfe64cc1054598c843a92b400e55675cc2ac37/pip-18.1-py2.py3-none-any.whl
Collecting setuptools
  Using cached https://files.pythonhosted.org/packages/82/a1/ba6fb41367b375f5cb653d1317d8ca263c636cff6566e2da1b0da716069d/setuptools-40.5.0-py2.py3-none-any.whl
Collecting wheel
  Using cached https://files.pythonhosted.org/packages/5a/9b/6aebe9e2636d35d1a93772fa644c828303e1d5d124e8a88f156f42ac4b87/wheel-0.32.2-py2.py3-none-any.whl
Installing collected packages: pip, setuptools, wheel
  The script wheel.exe is installed in 'D:\working\Python\python-3.7.1-embed-amd64\Scripts' which is not on PATH.
  Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
Successfully installed pip-18.1 setuptools-40.5.0 wheel-0.32.2

转载于:https://my.oschina.net/nixin/blog/2873254

你可能感兴趣的:(Windows下Python 3.7.1安装)