easy-install

Scrapy Installation Fails with error 'cannot open include: 'openssl/aes.h '

馋奶兔 提交于 2019-11-30 01:53:10
问题 I am trying to install Scrapy with easy_install -U Scrapy but it ends up in a strange error "Can not open include file " while trying to install it. Does any one know what is going on? Here is my complete traceback: C:\Users\Mubashar Kamran>easy_install -U Scrapy Searching for Scrapy Reading https://pypi.python.org/simple/Scrapy/ Best match: scrapy 0.24.4 Processing scrapy-0.24.4-py2.7.egg scrapy 0.24.4 is already the active version in easy-install.pth Installing scrapy-script.py script to C:

stopping setup.py from installing as egg

风流意气都作罢 提交于 2019-11-30 01:10:23
How do I stop setup.py from installing a package as an egg? Or even better, how do I easy_install from installing a package as an egg ? sudo python setup.py install The reason being that PyDev is rather picky about packages in egg format... The package I am interested in at the moment is boto . Update: I found the brute force way of doing it: sudo easy_install -m boto cd path/to/boto-xyz.egg sudo mv boto .. sudo rm -rf boto-xyz.egg I feel like I'm missing something subtle or important (encountering this page years after the question was asked and not finding a satisfying answer) however the

How to fix Python Numpy/Pandas installation?

…衆ロ難τιáo~ 提交于 2019-11-29 22:58:17
I would like to install Python Pandas library (0.8.1) on Mac OS X 10.6.8. This library needs Numpy>=1.6. I tried this $ sudo easy_install pandas Searching for pandas Reading http://pypi.python.org/simple/pandas/ Reading http://pandas.pydata.org Reading http://pandas.sourceforge.net Best match: pandas 0.8.1 Downloading http://pypi.python.org/packages/source/p/pandas/pandas-0.8.1.zip#md5=d2c5c5bea971cd760b0ae6f6850fcb74 Processing pandas-0.8.1.zip Running pandas-0.8.1/setup.py -q bdist_egg --dist-dir /tmp/easy_install-ckAMym/pandas-0.8.1/egg-dist-tmp-0mlL7t error: Setup script exited with pandas

how to run easy_install using a particular python version

时光怂恿深爱的人放手 提交于 2019-11-29 22:21:14
I have 3 python versions, I want to easy_install Orange using the second version. How can I do this? Unnecessary info: 2.1 in /usr/bin/python 2.6 in /Library/Frameworks/Python.framework/Versions/2.6/bin/python 3.1 in /Library/Frameworks/Python.framework/Versions/3.1/bin/python Answer: Ok found it here ( http://peak.telecommunity.com/DevCenter/EasyInstall#multiple-python-versions ), "Also, if you're working with Python version 2.4 or higher, you can run Python with -m easy_install to run that particular Python version's easy_install command" easy_install is usually/always installed per Python

Install particular version with easy_install

孤者浪人 提交于 2019-11-29 21:17:04
I'm trying to install lxml . I've had a look at the website, and version 2.2.8 looked reasonable to me but when I did easy_install lxml , it installed version 2.3.beta1 which is not really what I want I presume. What is the best way to fix this and how can I force easy_install to install a particular version? (Mac os x 10.6) I believe the way to specify a version would be like this: easy_install lxml==2.2.8 I (and most other Python users I suspect) stopped using easy_install and started using pip some time ago, so a solution in those terms is: easy_install pip pip install lxml==2.2.8 ( pip has

Python package install using pip or easy_install from repos

一个人想着一个人 提交于 2019-11-29 20:31:18
The simplest way to deal with python package installations, so far, to me, has been to check out the source from the source control system and then add a symbolic link in the python dist-packages folder. Clearly since source control provides the complete control to downgrade, upgrade to any branch, tag, it works very well. Is there a way using one of the Package installers (easy_install or pip or other), one can achieve the same. easy_install obtains the tar.gz and install them using the setup.py install which installs in the dist-packages folder in python2.6. Is there a way to configure it,

Installing pip using easy_install

[亡魂溺海] 提交于 2019-11-29 16:52:40
问题 I don't have root access and i want to install python from scratch. So I downloaded the python source code and compiled it. Next I wanted to install pip . But when I ran python get-pip.py I got this error: ImportError: cannot import name HTTPSHandler Not having root access then I couldn't install stuff needed. So I thought maybe I can install pip with easy_install so I went and installed setuptools which has easy_install . But when I run easy_install pip I get this error: Searching for pip

easy_install libmysqld-dev error :'NoneType' object has no attribute 'clone'

核能气质少年 提交于 2019-11-29 15:10:43
this is the error : (mysite)zjm1126@zjm1126-G41MT-S2:~/zjm_test/mysite$ ./bin/easy_install libmysqld-dev Searching for libmysqld-dev Reading http://pypi.python.org/simple/libmysqld-dev/ Couldn't find index page for 'libmysqld-dev' (maybe misspelled?) Scanning index of all packages (this may take a while) Reading http://pypi.python.org/simple/ No local packages or download links found for libmysqld-dev Best match: None Traceback (most recent call last): File "./bin/easy_install", line 8, in <module> load_entry_point('setuptools==0.6c11', 'console_scripts', 'easy_install')() File "/home/zjm1126

How can I make setuptools install a package from another source that's also available on pypi with the same version number?

牧云@^-^@ 提交于 2019-11-29 10:57:50
问题 It's a similar question to How can I make setuptools install a package that's not on PyPI? but not the same. As I would like to use the forked version of some package, setuptools ignore the dependency link (as it has the same version number). Is there a way to force using the link from the dependency_links? Or is the only way to change the version number in the forked repo? requires = [ ... 'pyScss==1.1.3' ... dependencies = [ 'https://github.com/nadavshatz/pyScss/zipball/master#egg=pyScss-1

python easy_install fails with SSL certificate error for all packages

為{幸葍}努か 提交于 2019-11-29 09:23:51
Goal: I'm on RedHat 5 and trying to install the latest python and django for a web app. I successfully altinstalled python27 and easy_install, and wget with openssl. Problem: However now that I try to get anything from pypi.python.org I get the following error: $ sudo easy_install --verbose django Searching for django Reading https://pypi.python.org/simple/django/ Download error on https://pypi.python.org/simple/django/: [Errno 1] _ssl.c:507: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed -- Some packages may not be found! Couldn't find index page for 'django