From cd350892ec6419056fc1472f4ae59814336be2f8 Mon Sep 17 00:00:00 2001 From: pauline-jastec Date: Wed, 28 Jun 2017 17:57:19 +0200 Subject: [PATCH] Update README.md update install part --- README.md | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index d67bb18..bb331cb 100644 --- a/README.md +++ b/README.md @@ -20,17 +20,28 @@ The client comes in the form of a multiplatform python package. Although the package has been tested on linux platforms only, it should run fine under Windows. -Package can be installed along with dependencies by running: +Note that python 2.6.+ or later is required. +To know if python is already installed or to check the version use the following command: +```bash +python --version +``` +In first, install virtualenv by typing the folling command in a terminal: ```bash -python setup.py install +sudo apt-get install virtualenv + ``` -Note that python 2.6.+ or later is required. Your python version can be -obtained by running: +Then, create and activate your dev environment in the project folder. +```bash +cd ltucloud-python-client +virtualenv env +source env/bin/activate +``` +The package can be installed along with dependencies by running: ```bash -python --version +python setup.py install ```