Questions tagged [easy-install]

15 questions
32
votes
4 answers

How to run easy_install in cygwin?

I am trying to install some package in cygwin's python, but I'm getting the following error: "easy_install: command not found". I have tried to run "easy_install.py", the result is also "easy_install.py: command not found". I have tried to search…
Alex Gontmakher
  • 101
  • 1
  • 2
  • 4
4
votes
2 answers

easy_install'ing under different Python version

I'm trying to easy_install a Python 2.5 package, but I've also got Python 3.1 installed, so I get a syntax error: except pkg_resources.VersionConflict, e: ^ …
agentofuser
  • 547
  • 3
  • 6
  • 14
2
votes
3 answers

Installing using easy_install and bdist_rpm possible?

I'm setting up a new server based on RHEL5 and wanted to install some python modules which don't come with it. I've seen that setuptools have an option to build RPM packages out of modules, but unfortunately this only works with setup.py, not with…
1
vote
0 answers

pysqlite for python 3.3.5 on Centos 6.5

I have compiled python 3.3.5 from source in the /opt folder as follows: yum install sqlite-devel ./configure --prefix=/opt/python3 make make install ln -s /opt/python3/bin/python3 /usr/bin/python3 I then installed easy install as follows: wget…
user2284355
  • 455
  • 2
  • 10
  • 23
1
vote
1 answer

Fresh installation of Trac 1.0.1 refusing to run with FastCGI

I have a freshly installed server running Debian squeeze. I've installed Python 2.6.6 and Trac 1.0.1 using easy_install. Trac runs fine when started using tracd. Now I'm trying to configure lighttpd to run Trac using FastCGI. I'm using the following…
Feuermurmel
  • 151
  • 1
  • 8
1
vote
1 answer

ipython easy_install/pip error

gcc is complaining with the following when trying to sudo easy_install readline: Running readline-6.2.4/setup.py -q bdist_egg --dist-dir /tmp/easy_install-JEUNX3/readline-6.2.4/egg-dist-tmp-_THoHR /usr/bin/ld: cannot find -lncurses collect2: ld…
CMag
  • 687
  • 2
  • 11
  • 31
1
vote
1 answer

HP DL 180 G6 installation problem

I have a problem installing Windows 2003 Standart in a DL180 G6 using the Easy Set-Up CD provided by HP, Windows installation process return: "The following value in the .SIF file used by setup is corrupt or missing, Value 1 on line 0 in section…
gcaracuel
  • 15
  • 4
1
vote
1 answer

Easy_install/setuptools is installing libraries to my Python 2.4 directory instead of my Python 2.6 directory

How do I make setup tools install libraries to the python 2.6 directory? I am in Centos. Easy_install/setuptools is installing libraries to my Python 2.4 directory instead of my Python 2.6 directory (After I upgraded from 2.4 to 2.6). How do I make…
user59004
1
vote
1 answer

How do I make pip or easy_install use /opt/python2.6/include?

I have built and installed python2.6.2 in /opt according to these instructions: http://casualengineer.blogspot.com/2009/09/install-python-262-on-centos-53.html#comment-form but for some reason my pip and easy install can't find…
1
vote
1 answer

Trouble installing Supervisor on Amazon Linux with easy_install

Our automated build process suddenly stopped functioning today with a fault installing "supervisor". I get the same fault after a complete rebuild. Does anybody have an alternative EB compatible method for installing Supervisor? Or any other tips on…
0
votes
2 answers

What is a easiest way to implement Mail Server in ubuntu and hook in webmail through XAMPP?

I currently have xampp running on my ubuntu server. I tried a variety of things including installing, postfix+dovecot+roundcube+postfixadmin (postfix+dovecot work I think, postfix admin also works, roundcube works and connects to dovecot but i cant…
Parris
  • 329
  • 3
  • 16
0
votes
1 answer

Pip timeouts with host reset mesage every time under VirtualBox

When trying to install requirements.txt (or anything else for the matter), pip just time-outs every time with host reset message. This happens only under VirtualBox (guest CentOS 6.4 64-bit, host Windows 7 64-bit), and only for pip/easy_install…
SyRenity
  • 3,159
  • 11
  • 55
  • 79
0
votes
1 answer

How to make pip or easy_install use aliases

I have some trouble installing python-mysqldb. The error I get is E: Could not perform immediate configuration on 'gcc'. Please see man 5 apt.conf under APT::Immediate-Configure for details. (2) So I tried installing it using pip or easy_install…
shym
  • 101
  • 2
0
votes
2 answers

What is the easiest way to setup a webserver on Mac?

I am looking for the easiest way to run a webserver with Drupal on Mac. MAMP PRO is a nice solution but some people say that it is for the local usage only. Can it be used as a full-scale webserver? What would you recommend for an easy auto-backup…
Andrey
  • 225
  • 3
  • 9
0
votes
0 answers

Installing and Running easy_install in Cygwin

I found this good but maybe outdated answer to my question: How to run easy_install in cygwin?, I went through the answers and ran the installer in order to get the python module setuptool. Yet after installation still python -m…