Add note how to use requirements.txt

We want to use (apparently) requirements.txt to store mbed's Python package dependencies.
Users can use this file with pip to install those requirements.
pull/1310/head
Przemek Wirkus 2015-08-20 13:09:11 +01:00 committed by 0xc0170
parent 92ca8c7b60
commit 2f184eb457
1 changed files with 5 additions and 0 deletions

View File

@ -44,6 +44,11 @@ $ sudo python setup.py install
```
when your system requires administrator rights to install new Python packages.
### Manual Python package dependency installation
In case you do not want to install whole mbed package using ```setuptools```, you can use ```requirements.txt``` file and with help of ```pip`` package manager install only mbed's Python package dependencies:
```
$ pip install -r requirements.txt
```
## Prerequisites (manual Python package dependency installation)
**Please only read this chapter if you had problems installing mbed SDK dependencies to Python packages**.