mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
pip install -E doesn't work anymore
https://github.com/veekun/pokedex/issues/202
This commit is contained in:
parent
3a7599239c
commit
9a716ca72c
1 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@ Run the following from an empty directory::
|
||||||
|
|
||||||
$ sudo apt-get install git python python-pip python-sqlalchemy
|
$ sudo apt-get install git python python-pip python-sqlalchemy
|
||||||
$ git clone git://github.com/veekun/pokedex.git
|
$ git clone git://github.com/veekun/pokedex.git
|
||||||
$ pip install -E env -e pokedex
|
$ pip install -e pokedex
|
||||||
$ source env/bin/activate
|
$ source env/bin/activate
|
||||||
(env)$ pokedex setup -v
|
(env)$ pokedex setup -v
|
||||||
(env)$ pokedex lookup eevee
|
(env)$ pokedex lookup eevee
|
||||||
|
@ -66,7 +66,7 @@ Getting and installing pokedex
|
||||||
Run the following from an empty directory::
|
Run the following from an empty directory::
|
||||||
|
|
||||||
$ git clone git://github.com/veekun/pokedex.git
|
$ 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
|
This will give you two directories: pokedex (containing the source code and
|
||||||
data), and env (a virtualenv_).
|
data), and env (a virtualenv_).
|
||||||
|
|
Loading…
Reference in a new issue