Index: README.rst |
=================================================================== |
--- a/README.rst |
+++ b/README.rst |
@@ -215,7 +215,8 @@ |
python-abp there:: |
$ cd python-abp |
- $ virtualenv env |
+ $ virtualenv venv |
+ $ source venv/bin/activate |
Vasily Kuznetsov
2019/01/25 12:09:50
Since we don't need the virtualenv to be activated
rhowell
2019/01/25 23:49:00
Done.
|
$ pip install --upgrade . |
@@ -229,3 +230,9 @@ |
Now you can use the functions with ``abp$functionname``, e.g. |
``abp.line2dict("@@||g.doubleclick.net/pagead/$subdocument,domain=hon30.org")``. |
+ |
+ |
+When you are finished, deactivate the virtualenv and delete it:: |
Vasily Kuznetsov
2019/01/25 12:09:50
If you agree with the suggestion above about not a
rhowell
2019/01/25 23:49:00
Done.
|
+ |
+ $ deactivate |
+ $ rm -r venv/ |