Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 16 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

double space after virtualenv

```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
```


Expand Down