From 87c2fa2573450efdb09f4c526ade27567faf418b Mon Sep 17 00:00:00 2001 From: Virgil Dupras Date: Sat, 4 Oct 2014 17:01:22 -0400 Subject: [PATCH] Updated README which was a bit outdated --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9199421d..f24bb428 100644 --- a/README.md +++ b/README.md @@ -63,12 +63,12 @@ On Arch, it's: Use Python's built-in `pyvenv` to create a virtual environment in which we're going to install our. Python-related dependencies. `pyvenv` is built-in Python but, unlike its `virtualenv` predecessor, -it doesn't install setuptools and pip, so it has to be installed manually: +it doesn't install setuptools and pip (unless you use Python 3.4+), so it has to be installed +manually: $ pyvenv --system-site-packages env $ source env/bin/activate - $ wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py -O - | python - $ easy_install pip + $ python get-pip.py Then, you can install pip requirements in your virtualenv: @@ -96,3 +96,4 @@ You can also package dupeGuru into an installable package with: [pyqt]: http://www.riverbankcomputing.com [cxfreeze]: http://cx-freeze.sourceforge.net/ [advinst]: http://www.advancedinstaller.com +