From 6ed80ad26c3e2f02f167d1f07c9ce4daefc5d21a Mon Sep 17 00:00:00 2001 From: Ndagi Stanley Date: Tue, 18 Jul 2017 21:48:37 +0300 Subject: [PATCH] Update installation steps --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 6f2733a34..b1829f93c 100644 --- a/README.md +++ b/README.md @@ -17,10 +17,10 @@ Quick Start ```bash virtualenv venv -p /usr/bin/python3 -``` +``` Activate your virtualenv -```bash +```bash source venv/bin/activate ``` @@ -35,20 +35,20 @@ There are two ways to install **skills-ml**. You can either install from the sou ```bash git clone https://github.com/workforce-data-initiative/skills-ml.git cd skills-ml -pip install requirements.txt -pip install requirements_dev.txt +pip install -r requirements.txt +pip install -r requirements_dev.txt ``` Then install with `setup.py` -```bash +```bash python setup.py install ``` #### Install with `pip` Or use `pip install` - + ```bash pip install git+git://github.com/workforce-data-initiative/skills-ml.git@master ```