diff options
author | Joseph Turian <turian@gmail.com> | 2010-02-07 20:54:58 -0500 |
---|---|---|
committer | Joseph Turian <turian@gmail.com> | 2010-02-07 20:54:58 -0500 |
commit | 05ed50cded946ac52e792423a7ec557ec7a51c98 (patch) | |
tree | 2f8491dc1e00a5fdfb36e00fa523f222707fa217 /INSTALL.pip | |
parent | ce94b3a3c7f4b1324d5e2845d92f7468a82ff016 (diff) | |
download | askbot-05ed50cded946ac52e792423a7ec557ec7a51c98.tar.gz askbot-05ed50cded946ac52e792423a7ec557ec7a51c98.tar.bz2 askbot-05ed50cded946ac52e792423a7ec557ec7a51c98.zip |
Added pip+virtualenv installation (simpler+cleaner)
Diffstat (limited to 'INSTALL.pip')
-rw-r--r-- | INSTALL.pip | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/INSTALL.pip b/INSTALL.pip new file mode 100644 index 00000000..e04be3db --- /dev/null +++ b/INSTALL.pip @@ -0,0 +1,25 @@ +* Install virtualenv and pip: + 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 sphinxsearch. See: + [optional] + http://sphinxsearch.com/downloads.html + http://www.hackido.com/2009/01/install-sphinx-search-on-ubuntu.html + git://github.com/johnl/deb-sphinx-search.git + +* Run pip installation: + pip install -E env -r osqa-requirements.txt + +* Notice that you will need to register with recaptcha.net and receive + recaptcha public and private keys that need to be saved in your + settings_local.py file |