zoukankan      html  css  js  c++  java
  • (未解决)WIN8下使用POWERSHELL安装python easy_install无法成功

    按照https://pypi.python.org/pypi/setuptools#windows-8-powershell介绍的方法, 安装未成功。安装似乎没有启动, 也未安装成功。

    Windows 8 (Powershell)

    For best results, uninstall previous versions FIRST (see Uninstalling).

    Using Windows 8 or later, it's possible to install with one simple Powershell command. Start up Powershell and paste this command:

    > (Invoke-WebRequest https://bootstrap.pypa.io/ez_setup.py).Content | python -
    

    You must start the Powershell with Administrative privileges or you may choose to install a user-local installation:

    > (Invoke-WebRequest https://bootstrap.pypa.io/ez_setup.py).Content | python - --user
    

    If you have Python 3.3 or later, you can use the py command to install to different Python versions. For example, to install to Python 3.3 if you have Python 2.7 installed:

    > (Invoke-WebRequest https://bootstrap.pypa.io/ez_setup.py).Content | py -3 -
    

    The recommended way to install setuptools on Windows is to download ez_setup.py and run it. The script will download the appropriate .egg file and install it for you.

    Once installation is complete, you will find an easy_install program in your Python Scripts subdirectory.  For simple invocation and best results, add this directory to your PATH environment variable, if it is not already present. If you did a user-local install, the Scripts subdirectory is $env:APPDATAPythonScripts.

  • 相关阅读:
    状态模式
    简单密码再次加密
    服务层定义自己的服务异常类
    必备网络基础知识(持续补充)
    MongoDB基础入门
    Git命令整理
    算法基础(四)
    RabbitMQ消息队列
    设计模式(23种)
    二叉树知识点
  • 原文地址:https://www.cnblogs.com/zhang-pengcheng/p/3720157.html
Copyright © 2011-2022 走看看