diff options
author | Kali Kaneko <kali@futeisha.org> | 2013-09-25 12:54:15 -0400 |
---|---|---|
committer | Kali Kaneko <kali@futeisha.org> | 2013-09-25 12:54:15 -0400 |
commit | 098cbee7c08d67aab9f6b4a01c226696a35450bc (patch) | |
tree | 55d0ea289ac04bd072908cca80b12f9476fb0cdd /docs/client | |
parent | 652879ef39b5a94fba50f8c78524e71e040e8b5b (diff) |
fix repo path in user-install
Diffstat (limited to 'docs/client')
-rw-r--r-- | docs/client/user-install.md | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/docs/client/user-install.md b/docs/client/user-install.md index 122bc6a..541a26a 100644 --- a/docs/client/user-install.md +++ b/docs/client/user-install.md @@ -96,15 +96,20 @@ Installing Bitmask is as simple as using Show me the code! ----------------- -You can get the code from LEAP public git repository : +For the brave souls that can find their way through python packages, you can +get the code from LEAP public git repository : - $ git clone git://leap.se/bitmask_client + $ git clone https://leap.se/git/bitmask_client Or from the github mirror : $ git clone git://github.com/leapcode/bitmask_client.git -Once you have grabbed a copy of the sources, you can install it into -your site-packages easily : +Once you have grabbed a copy of the sources, and installed all the base +dependencies, you can install it into your site-packages easily : - $ pyton setup.py install + $ make # compile the resources + $ sudo python2 setup.py install + +Although, like always, it is a better idea to install things in a +virtualenv. |