From 9a716ca72c6f223cee822e2641625de78ff11454 Mon Sep 17 00:00:00 2001 From: prescod Date: Fri, 23 Dec 2016 07:40:57 -0800 Subject: [PATCH] pip install -E doesn't work anymore https://github.com/veekun/pokedex/issues/202 --- doc/installing.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/installing.rst b/doc/installing.rst index a9d3ce3..2c72439 100644 --- a/doc/installing.rst +++ b/doc/installing.rst @@ -8,7 +8,7 @@ Run the following from an empty directory:: $ sudo apt-get install git python python-pip python-sqlalchemy $ git clone git://github.com/veekun/pokedex.git - $ pip install -E env -e pokedex + $ pip install -e pokedex $ source env/bin/activate (env)$ pokedex setup -v (env)$ pokedex lookup eevee @@ -66,7 +66,7 @@ Getting and installing pokedex Run the following from an empty directory:: $ git clone git://github.com/veekun/pokedex.git - $ pip install -E env -e pokedex + $ pip install -e pokedex This will give you two directories: pokedex (containing the source code and data), and env (a virtualenv_).