Skip to content

Commit

Permalink
Fix development setup instructions
Browse files Browse the repository at this point in the history
dev/bin/activate isn't an executable script, you need to source the file
into your local environment. Following the instructions as they are now
results in a "not executable by this user" error.
  • Loading branch information
xordspar0 authored and schettino72 committed Apr 21, 2019
1 parent 884a0bc commit 0f7c219
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.rst
Expand Up @@ -147,13 +147,13 @@ create a virtualenv...
::

doit$ virtualenv dev
(dev)doit$ dev/bin/activate
doit$ source dev/bin/activate

install ``doit`` as "editable", and add development dependencies
from `dev_requirements.txt`::

(dev)doit$ pip install --editable .
(dev)doit$ pip install --requirement dev_requirements.txt
(dev) doit$ pip install --editable .
(dev) doit$ pip install --requirement dev_requirements.txt



Expand Down

0 comments on commit 0f7c219

Please sign in to comment.