title | page_id |
---|---|
Installation |
install |
This project requires Python 3.7+. See below sections for more platform-specific requirements.
git clone https://github.com/bitcraze/crazyflie-lib-python.git
cd crazyflie-lib-python
pip install -e .
pip uninstall cflib
Note: If you are developing for the cflib you must use python3. On Ubuntu (20.04+) use pip3
instead of pip
.
The following should be executed in the root of the crazyflie-lib-python file tree.
This section contains a very short description of how to use virtualenv (local python environment) with package dependencies. If you don't want to use virualenv and don't mind installing cflib dependencies system-wide you can skip this section.
-
Install virtualenv:
pip install virtualenv
-
create an environment:
virtualenv venv
-
Activate the environment:
source venv/bin/activate
-
To deactivate the virtualenv when you are done using it
deactivate
Install dependencies required by the lib: pip install -r requirements.txt
. If you are planning on developing on the lib you should also run: pip install -r requirements-dev.txt
.
To verify the installation, connect the crazyflie and run an example: python3 examples/logging/basiclog.py
If you want some extra help with keeping to the mandated python coding style you can install hooks that verify your style at commit time. This is done by running:
$ pre-commit install
This will run the lint checkers defined in .pre-commit-config-yaml
on your proposed changes and alert you if you need to change anything.
For information and installation of the toolbelt.
- Check to see if you pass tests:
tb test
- Check to see if you pass style guidelines:
tb verify
Note: Docker and the toolbelt is an optional way of running tests and reduces the work needed to maintain your python environment.
With linux, the crazyradio is easily recognized, but you have to setup UDEVpermissions. Look at the usb permission instructions to setup udev on linux.
Look at the Zadig crazyradio instructions to install crazyradio on Windows