Tagged Questions
0
votes
1answer
117 views
Error installing MySQL-python
Just tried to pip install MySQL-python using virtualenv. I am using Mac OS X and installed mysql using a .pkg file. It raises me a weird exception:
Downloading/unpacking MySQL-python
Running ...
1
vote
1answer
219 views
clang error when installing MYSQL-python on Lion-mountain (Mac OS X 10.8)
When I try installing mysql-python using below command,
macbook-user$ sudo pip install MYSQL-python
I get these messages:
...
1
vote
2answers
548 views
Install MySQL-python in virtualenv on Windows 7
I'm trying to install MySQL-python in my virtualenv (Windows 7 32b + Python 2.7.3), but unfortunately after command:
pip install MySQL-python
I get error message:
Install packages failed: Error ...
4
votes
0answers
641 views
installing mysql for python within virtual environment [closed]
I went through other similar questions, but none of the stuffs mentioned there, served my purpose. My OS is ubuntu 11.04, What i did was created a virtual environment first:
virtualenv mysite
once ...
0
votes
1answer
261 views
Error installing eggs with packages for different python version with virtualenv
I'm not able to install packages with a virtualenv set to a different python version. Here's my $:
$ sudo apt-get install python-setuptools python-dev build-essential
$ sudo easy_install -U pip
$ ...
2
votes
2answers
2k views
Registry error when installing MySQL-python into virtualenv using pip and easy_install
The pip and easy install commands (install MySQL-python) provide the massive error listed below.
I've been looking around for an answer a while now on this site and through google. The recurring ...
0
votes
3answers
4k views
Installing MySQL-python via pip/virtualenv for python 2.5 (on a linux system with python2.6)
I am trying to set up a virtualenv for a django project. It needs MySQL-python. I'm trying to replicate the production environment, which uses python 2.5. My Ubuntu desktop has python 2.5. I can ...
84
votes
2answers
28k views
Installing specific package versions with Pip
I'm trying to install version 1.2.2 of the MySQL_python adaptor. The current version shown in PyPi is 1.2.3. Is there a way to install the older version? I found an article stating that this should do ...
76
votes
9answers
35k views
pip install mysql-python fails with EnvironmentError: mysql_config not found
This is the error I get
(mysite)zjm1126@zjm1126-G41MT-S2:~/zjm_test/mysite$ pip install mysql-python
Downloading/unpacking mysql-python
Downloading MySQL-python-1.2.3.tar.gz (70Kb): 70Kb downloaded
...
8
votes
1answer
3k views
Using PIP in a virtual environment, how do I install MySQL-python
When I'm in my virtual environment, I attempt to run:
pip install MySQL-python
This didn't work, so I tried downloading the package and installing it by running:
python setup.py install
This ...
9
votes
7answers
9k views
mysql-python install problem using virtualenv, windows, pip
I'm trying to install mysql-python in a virtualenv using pip on windows. At first, I was getting the same error reported here, but the answer there worked for me too. Now I'm getting this following ...