Skip to content

Latest commit

 

History

History
77 lines (54 loc) · 2.56 KB

install.md

File metadata and controls

77 lines (54 loc) · 2.56 KB
title page_id
Installation
install

Requirements

This project requires Python 3.7+. See below sections for more platform-specific requirements.

Install from Source

Clone the repository

git clone https://github.com/bitcraze/crazyflie-lib-python.git

Install cflib from source

cd crazyflie-lib-python
pip install -e .

Uninstall cflib

pip uninstall cflib

Note: If you are developing for the cflib you must use python3. On Ubuntu (20.04+) use pip3 instead of pip.

Linux, OSX, Windows

The following should be executed in the root of the crazyflie-lib-python file tree.

Virtualenv

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 cflib dependencies

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

Pre commit hooks

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.

Testing

With docker and the toolbelt

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.

Platform notes

Linux

With linux, the crazyradio is easily recognized, but you have to setup UDEVpermissions. Look at the usb permission instructions to setup udev on linux.

Windows

Look at the Zadig crazyradio instructions to install crazyradio on Windows