From a6eb0409e2bef3d4b3caa0abf26fafcee8299c73 Mon Sep 17 00:00:00 2001 From: William Doane Date: Wed, 6 Feb 2013 02:32:33 -0500 Subject: [PATCH] Add pip install command; Use python --version to check for python --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 87b342e..31ec2df 100644 --- a/README.md +++ b/README.md @@ -37,19 +37,22 @@ You'll also need to install the following dependent libraries from CRAN: 3. Make sure you [have Python Installed][6] ```bash - $ which python # should return python's location, if it's installed + $ python --version # should return python's version number, if it's installed ``` 4. [Install pip][7] if you haven't got it already ```bash + $ curl -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py + $ sudo python get-pip.py + $ rm get-pip.py $ which pip # should return pip's location, if it's installed ``` 5. From your clone of our project directory, use pip to install the required python dependencies for this project ```bash - $ pip install -r requirements.txt + $ sudo pip install -r requirements.txt ``` ## RepoStatistics.py Usage @@ -101,4 +104,4 @@ Please give us feedback! We'd love to hear your gripes, thrill stories, and feat [6]: http://wiki.python.org/moin/BeginnersGuide/Download [7]: http://www.pip-installer.org/en/latest/installing.html [8]: https://github.com/briandk/gitvisualizations/issues/new -[9]: http://www.kernel.org/pub/software/scm/git/docs/git-log.html#_examples \ No newline at end of file +[9]: http://www.kernel.org/pub/software/scm/git/docs/git-log.html#_examples