Python easy_install

系统中有高版本的Python, 直接pip3 install ipcalc安装,都是装到高版本的Python

系统默认的Python是2.7.6,现在想装到默认版本中,可以使用easy_install

[email protected]:/usr/bin $ sudo easy_install ipcalc
Password:
Searching for ipcalc
Reading http://pypi.python.org/simple/ipcalc/
Best match: ipcalc 1.1.3
Downloading https://pypi.python.org/packages/source/i/ipcalc/ipcalc-1.1.3.tar.gz#md5=14aa5f92d316631df6c4557a0e87c61b
Processing ipcalc-1.1.3.tar.gz
Writing /tmp/easy_install-ZyioKD/ipcalc-1.1.3/setup.cfg
Running ipcalc-1.1.3/setup.py -q bdist_egg --dist-dir /tmp/easy_install-ZyioKD/ipcalc-1.1.3/egg-dist-tmp-C92sIM
zip_safe flag not set; analyzing archive contents...
Adding ipcalc 1.1.3 to easy-install.pth file

Installed /Library/Python/2.7/site-packages/ipcalc-1.1.3-py2.7.egg
Processing dependencies for ipcalc
Finished processing dependencies for ipcalc

[email protected]:/usr/bin $ sudo easy_install IPy
Searching for IPy
Reading http://pypi.python.org/simple/IPy/
Best match: IPy 0.83
Downloading https://pypi.python.org/packages/source/I/IPy/IPy-0.83.tar.gz#md5=7b8c6eb4111b15aea31b67108e769712
Processing IPy-0.83.tar.gz
Writing /tmp/easy_install-XIZ3N9/IPy-0.83/setup.cfg
Running IPy-0.83/setup.py -q bdist_egg --dist-dir /tmp/easy_install-XIZ3N9/IPy-0.83/egg-dist-tmp-4Li7BL
zip_safe flag not set; analyzing archive contents...
Adding IPy 0.83 to easy-install.pth file

Installed /Library/Python/2.7/site-packages/IPy-0.83-py2.7.egg
Processing dependencies for IPy
Finished processing dependencies for IPy

[email protected]:/usr/bin $ python
Python 2.7.6 (default, Sep 9 2014, 15:04:36)
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.39)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import IPy

时间: 2024-10-14 00:35:17

Python easy_install的相关文章

(未解决)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 si

linux中python easy_install命令

centos 下安装 python easy_installcurl -O http://peak.telecommunity.com/dist/ez_setup.pypython ez_setup.py -U setuptools如果出现 setuptools.egg下载不了 更改ez_setup.py文件中的url地址如果出现缺少zlib模块,检查系统是否安装 rpm -qa | grep zlib,没有先去http://www.zlib.net/下载最新版本的zlib源码文件,如:http

python学习:Windows 下 Python easy_install 的安装

Windows 下 Python easy_install 的安装 下载安装python安装工具下载地址:http://pypi.python.org/pypi/setuptools 可以找到正确的版本进行下载.win7 32位可以下载setuptools-0.6c11.win32-py2.7.exe .注意:win7 64位必须使用ez_setup.py进行安装.方法是下载ez_setup.py后,在cmd下执行 python ez_setup.py,即可自动安装setuptools.目前没有

Python easy_install 遇到“ImportError: Entry point (‘console_scripts’, ‘easy_install’) not found”错误

最近在搞爬虫,使用的自然是大名鼎鼎的Scrapy.但是在安装Scrapy的时候遇到了很多问题,第一个问题就是Scrapy只兼容Python2.7以上的版本.而我的机器上使用的还是Python2.6,所以第一步就是要重装Python,具体的安装过程就不再赘述了,网上有很多这样的教程,并且也不复杂.稍显麻烦的可能是在使用Scrapy的时候还需要使用一些其他的包比如lxml等等.通常在原有的Python版本中是安装了的,比较偷懒的办法就是将这些包复制到新建的Python的搜索路径中.比如新的Pytho

python - easy_install的安装和使用

1.为什么要装easy_install?正常情况下,我们要给Python安装第三方的扩展包,我们必须下载压缩包,解压缩到一个目录,然后命令行或者终端打开这个目录,然后执行python setup.py install来进行安装.这样是不是很繁琐呢?如果我们直接命令行执行easy_install Twisted,就把最新版的Twisted包装上去了,岂不是很方便所以easy_install就是为了我们安装第三方扩展包更容易. 2.安装 要用easy_install,就要装setuptools. >

python easy_install centos 下安装过程和原理解析

一.easy_install 安装过程 其安装过程有很多种,我也找了很多的例子,但是结果都不太好,以下方法的结果是不错的. easy_install与yum类似,使用easy_install,可以轻松在pypi软件库里面搜索python各类软件 安装easy_install比较简单,如果配置好yum,就可以直接搜索python-setuptools yum –y install python-setuptools 安装完python-setuptools之后,还需要安装python-devel

python easy_install django 安装

一.easy_install 安装 1.下载ez_setup.py https://pypi.python.org/pypi/setuptools 2.安装easy_install python  ez_setup.py 二.django 安装 1.下载django https://www.djangoproject.com/download/ 2.安装django /usr/local/python/bin/easy_install django

python easy_install pip

Python下有几种安装包的工具,比如easy_install和pip,经常搞不清楚它们的用法和关系,自己写篇总结一下,方便下次用的时候查找. easy_install的安装(win下)可以参考这篇文章:http://www.cnblogs.com/zhuyp1015/archive/2012/07/17/2596495.html pip在linux下可以直接用sudo easy_install pip安装,win下可到官方页面下载安装包,解压setup.py执行安装: easy_install

windows python easy_install ,pip. selenium

http://www.cnblogs.com/fnng/p/3157639.html 搭建平台windows 准备工具如下: unknown encoding: cp65001异常 python安装后进入命令行交互模式,输入任何代码都报unknown encoding: cp65001异常 需要将编码(UTF-8)修改为 简体中文(GBK) 在CMD窗口执行 chcp 936 ------------------------------------------------------------