(未解决)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:APPDATA\Python\Scripts.

(未解决)WIN8下使用POWERSHELL安装python easy_install无法成功,布布扣,bubuko.com

时间: 2024-09-30 13:04:35

(未解决)WIN8下使用POWERSHELL安装python easy_install无法成功的相关文章

Win8下IIS的安装和网站的发布

之前维护永和收银系统的时候遇到过后台无法访问,也看过师哥在XP上发布后台管理端.首先要干的就是安装IIS,下面我就分享一下我在Win8上安装IIS,然后发布网站,最后实现在局域网访问的经验. 一.IIS的安装 1.打开控制面板(选择程序 程序与功能 启用或关闭Windows功能) (图-1) 2.进行如下图操作,弹出(图-3) (图-2) 3.选中图中勾选的复选框,然后单击确定 (图-3) 4.自动搜索需要的文件并安装,安装完成后点击关闭,即完成了IIS的安装.(图-4,图-5) (图-4) (

解决Win8下使用net use命令磁盘映射无效的问题

该问题由UAC机制引起,可尝试如下方案: 以管理员身份打开Powershell,运行: New-ItemProperty -Path "registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" -Name "EnableLinkedConnections" -Value 1 -PropertyType "DWord" 解决Win8

Windows下使用pip安装python包是报错-UnicodeDecodeError: 'ascii' codec can't decode byte 0xcb in position 0

先交待下开发环境: 操作系统:Windows 7 Python版本:2.7.9 Pip版本:6.1.1 其他环境忽略 在windows下使用pip下载python包,出现如下错误 [plain] view plain copy Collecting xxxxxx Exception: Traceback (most recent call last): File "D:\Python27\lib\site-packages\pip-6.0.8-py2.7.egg\pip\basecommand.

win7 win8下 dvorak 的安装和练习

介绍:http://www.kaufmann.no/roland/dvorak/ 看不懂的去百度百科dvorak 下载  http://www.kaufmann.no/downloads/winnt/kbddvp-1_2_4-i386.exe 下载的是程序员dvorak 然后添加输入法 安装好了! 推荐五笔    因为dvorak对拼音不友好,会有很多左手单手连打 下面是键盘练习部分,自己做了一个页面 代码如下 <!doctype html> <html> <head>

解决Win8下安装yii2时,运行php Composer出现SSL报错的问题

今天尝试在win8下运行composer却出现SSL报错: D:\data\www\mmoyu\symapp>php -f %phprc%\composer install Loading composer repositories with package information [Composer\Downloader\TransportException] The "https://packagist.org/packages.json" file could not be

Windows下Eclipse+PyDev安装Python开发环境

1.简介 Eclipse是一款基于Java的可扩展开发平台.其官方下载中包括J2EE方向版本.Java方向版本.C/C++方向版本.移动应用方向版本等诸多版本.除此之外,Eclipse还可以通过安装插件的方式进行诸如Python.Android.PHP等语言的开发. 本文将要介绍的就是使用Eclipse与PyDev插件,安装Python开发环境的方法,其中写本文的一个主要原因就是几天前在一台电脑上安装PyDev插件时遇到了一个之前没有遇到过的状况. 2.环境 OS:Windows XP 32bi

windows下使用pip安装python模块lxml

pip install lxml 1 1 会有如下问题:  结果一路解决下去,解决了一个坑还是有一个坑,遂放弃,查找有没有别的解决办法. 亲测使用wheel+pip可以成功安装lxml! wheel本质上是一个 zip 包格式,它使用 .whl 扩展名,用于 Python 模块的安装,它的出现是为了替代 Eggs. 1. 安装wheel pip install wheel 1 1 2.下载安装文件 页面中有很多python扩展包的安装文件,找到lxml的下载路径,并选择适合自己的安装文件-下载路

解决win8.1电脑无法安装手机驱动问题

相信安装过win8.1的朋友都会有个问题,那就是自己的安卓手机怎么都连不上电脑,比如360助手.豌豆荚.91助手,都安不上驱动.下面几个简单步骤即可轻松解决. 1.首先声明,官方的驱动是完全支持win8的,也可以说win8是兼容手机的驱动的,但问题就在于win8的驱动安装机制,没有数字签名是不允许的,所以需要将其关闭. 2. 进入系统,[Win]+[C]调出Charm菜单-更改电脑设置-设置-常规-高级启动的立即重启-疑难解答-高级选项-启动设置-重新启动,然后禁用驱 动强制签名.如果有的朋友的

解决Linux下用vim写python的缩进不正确问题

第一步: 打开终端,在终端上输入vim ~/.vimrc,回车. 第二步: 输入: set helplang=cn "中文帮助文档(前提是下了中文包) syntax enable syntax on " 自动语法高亮 set number"显示行号 colorscheme desert" 设定配色方案 set guifont=Consolas:h12:cANSI"英文字体 set guifontwide=SimSun-ExtB:h12:cGB2312 se