mirror of https://github.com/ARMmbed/mbed-os.git
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
parent
92ca8c7b60
commit
2f184eb457
|
@ -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**.
|
||||
|
||||
|
|
Loading…
Reference in New Issue