summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Alejandro <ivanalejandro0@gmail.com>2014-08-20 16:40:53 -0300
committerIvan Alejandro <ivanalejandro0@gmail.com>2014-08-20 16:41:08 -0300
commit2353a2785766e1d7b4b58f9f2880cc7d98691a1e (patch)
tree23ed3e49b82d42c8cd42d44f91c4876ef0dea9fb
parentb5c949c93c63206342ff8efadf3879b9d5f978ba (diff)
Add --always-unzip option to avoid import errors.
-rw-r--r--docs/client/dev-environment.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/client/dev-environment.md b/docs/client/dev-environment.md
index 4db0fb3..b41e7af 100644
--- a/docs/client/dev-environment.md
+++ b/docs/client/dev-environment.md
@@ -146,12 +146,16 @@ site-packages to your working directory. In this way, your changes will always
be in the installation path without need to install the package you are working
on.::
- (bitmask)$ python2 setup.py develop
+ (bitmask)$ python2 setup.py develop --always-unzip
After this step, your Bitmask launcher will be located at
`~/Virtualenvs/bitmask/bin/bitmask`, and it will be in the path as long as you
have sourced your virtualenv.
+Note: the `--always-unzip` option prevents some dependencies to be installed in
+a zip/egg, which causes some issues with libraries like 'scrypt' that needs to
+access to the files directly from the filesystem.
+
Compile Qt resources
--------------------