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.

  • 相关阅读:
    二维数组的使用及其内存结构
    一维数组的练习
    数组的默认初始化
    数组
    完数
    break与continue
    乘法表及质数的输出法
    嵌套循环的使用
    Elasticsearch索引和查询性能调优
    elasticsearch数据冷热分离、数据冷备
  • 原文地址:https://www.cnblogs.com/zhang-pengcheng/p/3720157.html
Copyright © 2011-2022 走看看