summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorTomas Touceda <chiiph@leap.se>2013-04-16 10:41:53 -0300
committerkali <kali@leap.se>2013-04-16 23:11:39 +0900
commit2a402c32fa6f709e69ff7a5ae09266cf605839a2 (patch)
tree9e52821917efb71b37c9705627151d3536f54a37 /README.rst
parent83d129953189381ac71b11e444a4f42996eda04a (diff)
Remove debian installation for dependencies, just use setup.py
Also, note to run make before installing leap-client
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst19
1 files changed, 4 insertions, 15 deletions
diff --git a/README.rst b/README.rst
index 7a47ce70..806e222c 100644
--- a/README.rst
+++ b/README.rst
@@ -21,28 +21,17 @@ Debian
With a Debian based system, to be able to run leap-client you need to run the following command::
- $ sudo apt-get install openvpn python-pyside pyside-tools python-setuptools python-crypto python-requests python-openssl python-all-dev
-
-pip
-^^^
-
-Use pip to install the required python packages::
-
- $ sudo apt-get install python-pip python-dev python-openssl
- $ pip install -r pkg/requirements.pip
-
+ $ sudo apt-get install openvpn python-pyside pyside-tools python-setuptools python-all-dev python-pip python-dev python-openssl
Installing
-----------
-For the leap-client to run, you need to install the leap.common package first, if you used pip, you can skip this step::
-
- $ sudo pip install leap.common
-
After getting the source and installing all the dependencies, proceed to install ``leap-client`` package::
- $ sudo python setup.py install
+ $ make
+ $ LEAP_VENV_SKIP_PYSIDE=1 sudo python setup.py install
+LEAP_VENV_SKIP_PYSIDE is used to avoid compiling PySide in the installation since it's already installed through the package manager.
Running
-------