Questions tagged [easy-install]

EasyInstall is a package manager that provides a standard format to distribute Python programs and libraries. Part of the `setuptools` module.

730 questions
33
votes
4 answers

pip install test dependencies for tox from setup.py

I made my project with setuptools and I want to test it with tox. I listed dependencies in a variable and added to setup() parameter (tests_require and extras_require). My project needs to install all of the dependencies listed in tests_require to…
item4
  • 695
  • 1
  • 7
  • 11
32
votes
3 answers

pyzmq missing when running ipython notebook

I can run iPython, but when I try to initiate a notebook I get the following error: ~ ipython notebook Traceback (most recent call last): File "/usr/local/bin/ipython", line 8, in load_entry_point('ipython==2.1.0',…
utdiscant
  • 10,402
  • 7
  • 29
  • 38
32
votes
3 answers

setup.py: restrict the allowable version of the python interpreter

I have a Python library. Unfortunately I have not updated it to work with Python 3 yet. In its setup.py, I added install_requires=['python<3'], My intent was to not allow this package to be installed/used under Python 3, because I know it doesn't…
gfxmonk
  • 7,932
  • 4
  • 37
  • 52
32
votes
9 answers

How to fix Python Numpy/Pandas installation?

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…
scls
  • 12,653
  • 9
  • 36
  • 49
30
votes
7 answers

How to install easy_install in Python 2.7.1 on Windows 7

I have installed Python 2.7.1 on Windows 7, but I am unable to install easy_install. Please help me.
prabhat
  • 301
  • 1
  • 3
  • 3
30
votes
2 answers

pip broken after upgrading

I did pip install -U easyinstall, and then pip install -U pip to upgrade my pip. However, I get this error now when trying to use pip: root@d8fb98fc3a66:/# which pip /usr/local/bin/pip root@d8fb98fc3a66:/# pip bash: /usr/bin/pip: No such file or…
dl8
  • 1,240
  • 1
  • 13
  • 33
28
votes
2 answers

How do I uninstall a Python module (“egg”) that I installed with easy_install?

I’ve installed a couple of Python modules using easy_install. How do I uninstall them? I couldn’t see an uninstall option listed in easy_install --help.
Paul D. Waite
  • 89,393
  • 53
  • 186
  • 261
28
votes
2 answers

easy_install : ImportError: Entry point ('console_scripts', 'easy_install') not found

I used easy_install to install pip, pip to install django, virtualenv, and virtualenvwrapper. I have just returned to it a few weeks later and django does not seem to work anymore, but more concerning is I can't start the process over again as…
xragon
  • 381
  • 1
  • 3
  • 4
27
votes
6 answers

Installing pip using easy_install

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…
Jack Twain
  • 5,655
  • 10
  • 56
  • 100
26
votes
13 answers

pip/easy_install failure: failed to create process

After following this article: How do I install pip on Windows? on my Windows system using Enthought Canopy 64 Bit system, I cannot get pip or easy_install to work due to error: pip install requests failed to create process I tried re-installing…
Matt
  • 2,159
  • 5
  • 23
  • 44
26
votes
2 answers

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

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…
roberkules
  • 6,389
  • 1
  • 40
  • 51
25
votes
5 answers

easy_install lxml on Python 2.7 on Windows

I'm using python 2.7 on Windows. How come the following error occurs when I try to install [lxml][1] using [setuptools][2]'s easy_install? C:\>easy_install lxml Searching for lxml Reading http://pypi.python.org/simple/lxml/ Reading…
Jonathan
  • 84,911
  • 94
  • 244
  • 345
25
votes
4 answers

how to run easy_install using a particular python version

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…
Lavanya
  • 2,286
  • 3
  • 15
  • 13
25
votes
8 answers

How to prepend a path to sys.path in Python?

Problem description: Using pip, I upgraded to the latest version of requests (version 2.7.0, with pip show requests giving the location /usr/local/lib/python2.7/dist-packages). When I import requests and print requests.__version__ in the interactive…
max
  • 259
  • 1
  • 3
  • 3
25
votes
3 answers

Installing psycopg2 (postgresql) in virtualenv on windows

I installed psycopg2 in virtualenv using easy_install psycopg2. I did not see any errors and looks like installation went fine.. there is an egg file created in the site-packages dir for psycopg2.. but when I run import psycopg2 in the interpreter,…
StackUnderflow
  • 20,450
  • 13
  • 52
  • 77
1 2
3
48 49