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
0
votes
2 answers

easy_install matplotlib updates on Mac OS X

I'm currently using matplotlib 1.0.1, running with Python 2.7.1, but like to update it to at least 1.1.0. However, when I tried downloading matplotlib-1.1.0-py2.7-python.org-macosx10.3.dmg from…
neither-nor
  • 1,125
  • 2
  • 13
  • 25
-1
votes
2 answers

python on macos import fails on missing package

I'm trying to install PIL on snow-leopard , but I am running into a few problems. 1st this system needs to be cleaned up, too many tests with macports, easy_install etc.. I thing I might have too many versions of python in there... but that is not…
-1
votes
2 answers

I'm not able to install PIL. Terminal says access denied to directory. How to gain access to the directory

I typed in this command in the terminal easy_install PIL The terminal said this: *error: can't create or remove files in install directory The following error occurred while trying to add or remove files in the installation directory: …
-1
votes
3 answers

What does this Python message mean?

ho-fe3fdd00-12:~ Sam$ easy_install BeautifulSoup Traceback (most recent call last): File "/usr/bin/easy_install", line 8, in load_entry_point('setuptools==0.6c7', 'console_scripts', 'easy_install')() File…
anon
-1
votes
4 answers

Unable to use installed module in script

I'm a newbie to python (about one week in), so maybe I'm just missing something obvious... I have been unable to import and use a module in my script code.py. The module was installed using easy_install and is called googlemaps. I installed it…
robguinness
  • 14,738
  • 13
  • 52
  • 64
-1
votes
1 answer

easy_install conflict for python2.4 and python2.7

I have installed python under /opt/python2.7.1/ on CentOS machine which has already python2.4 and configure it to run python2.7 default. However, when I write 'easy_install' it raises error like Traceback (most recent call last): File…
brsbilgic
  • 10,643
  • 12
  • 55
  • 89
-2
votes
1 answer

Error installing psycopg2 on python 2.6

I'm trying to install psycopg2 on Python 2.6: easy_install-2.6 psycopg2 but receive lots of compiling errors in psycopg/psycopgmodule.c But psycopg2 is installed and works fine on the same machine on Python 2.4. Any ideas?
Igor Semenov
  • 453
  • 5
  • 13
-2
votes
2 answers

Trying to install easy_install or pip for django

I am trying to install Django and here is what I get when I try to install pip => " Fatal error in launcher: Unable to create process using '"' When I enter de command => python -m pip install XXX it does not work. Any help?
CoJ
  • 1
  • 1
-2
votes
1 answer

Installing an extension from conf.py

I try to build the docs, and use a custom sphinx extension, but this extension isn't installed by default - so I provide it via conf.py, using this: try: import sphinxjp.themes except ImportError: from setuptools.command import easy_install …
Abdelouahab
  • 6,473
  • 10
  • 42
  • 78
-3
votes
1 answer

How to import numpy to portable Python 3.6?

I have downloaded Python 3.6 Portable. I need to use numpy. I have downloaded it using git: git clone https://github.com/numpy/numpy.git numpy . Copied the directory "numpy" to the Python directory. Now, when I use "import numpy", I get the…
Jaroslav Tavgen
  • 312
  • 1
  • 9
1 2 3
48
49