diff options
author | Joseph Turian <turian@gmail.com> | 2010-02-07 21:52:58 -0500 |
---|---|---|
committer | Joseph Turian <turian@gmail.com> | 2010-02-07 21:52:58 -0500 |
commit | dbc5b04fb67a9441d02fec59222c993b0d4297ab (patch) | |
tree | 5362bd0944587a13a7fec4da03ea0b17b349f278 /INSTALL.pip | |
parent | 79701d85c25ce94302d1200f2bd5101308f98857 (diff) | |
download | askbot-dbc5b04fb67a9441d02fec59222c993b0d4297ab.tar.gz askbot-dbc5b04fb67a9441d02fec59222c993b0d4297ab.tar.bz2 askbot-dbc5b04fb67a9441d02fec59222c993b0d4297ab.zip |
More updates to installation instructions
Diffstat (limited to 'INSTALL.pip')
-rw-r--r-- | INSTALL.pip | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/INSTALL.pip b/INSTALL.pip index 7d332aaf..92b1c7fa 100644 --- a/INSTALL.pip +++ b/INSTALL.pip @@ -2,14 +2,8 @@ easy_install virtualenv easy_install pip -* Install mysql-python system-wide, because we can't install it with pip - sudo easy_install mysql-python - or - sudo apt-get install python-mysqldb - - For more information about why pip can't automatically install the - MySQL driver, see this message: - http://groups.google.com/group/python-virtualenv/msg/ea988085951c92b3 +* Install MySQL: + sudo apt-get install mysql-client mysql-server * Install sphinxsearch. See: [optional] @@ -28,3 +22,10 @@ the source directory] * Start your environment: source ~/env/bin/activate + +* Install mysql-python into your virtualenv, because we can't +automagically install it with pip: + easy_install --prefix ~/env/ mysql-python + +For more information about why pip can't automatically install the +MySQL driver, see this message: http://groups.google.com/group/python-virtualenv/msg/ea988085951c92b3 |