Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install parrot-olympe via python pip




parrot-olympe - Python controller library for Parrot Drones, it belongs to Classifiers:

- Intended Audience :: Education
- Operating System :: POSIX :: Linux
- Programming Language :: C
- Topic :: Scientific/Engineering :: Artificial Intelligence
- Topic :: Scientific/Engineering :: Image Processing

When you know about this project and you want to new install parrot-olympe to support your project or you get trouble as ModuleNotFoundError: No module named "parrot-olympe" or ImportError: cannot import name "parrot-olympe" in your project, let follow this tutorial to install parrot-olympe



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_parrot-olympe_env

- Active the virtual environment

test_parrot-olympe_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_parrot-olympe_env

- Active the virtual environment

source test_parrot-olympe_env/bin/active


Step 2: OK, now, let flow below content to start the installation parrot-olympe

To install parrot-olympe on Windows(CMD):

py -m pip install parrot-olympe

To install parrot-olympe on Unix/macOs:

pip install parrot-olympe


Step 3: If you want to install a specific parrot-olympe version, add ==<parrot-olympe version> to the end command line

Example:

pip install parrot-olympe==0.0.0


Please see the version list below table:

VersionReleased dateCommand
parrot-olympe 7.3.02022-07-01T12:56:06Windows:

py -m pip install parrot-olympe==7.3.0

Unix/macOs:

pip install parrot-olympe==7.3.0

parrot-olympe 7.2.02022-05-27T15:21:05Windows:

py -m pip install parrot-olympe==7.2.0

Unix/macOs:

pip install parrot-olympe==7.2.0

parrot-olympe 7.1.02022-02-23T16:06:06Windows:

py -m pip install parrot-olympe==7.1.0

Unix/macOs:

pip install parrot-olympe==7.1.0

parrot-olympe 7.0.32021-11-23T17:52:00Windows:

py -m pip install parrot-olympe==7.0.3

Unix/macOs:

pip install parrot-olympe==7.0.3

parrot-olympe 7.0.22021-11-10T16:59:51Windows:

py -m pip install parrot-olympe==7.0.2

Unix/macOs:

pip install parrot-olympe==7.0.2

parrot-olympe 7.0.12021-10-29T16:31:27Windows:

py -m pip install parrot-olympe==7.0.1

Unix/macOs:

pip install parrot-olympe==7.0.1

parrot-olympe 0.0.02021-11-12T14:16:09Windows:

py -m pip install parrot-olympe==0.0.0

Unix/macOs:

pip install parrot-olympe==0.0.0


Step 4: Otherwise, you can install parrot-olympe from local archives:

Download the distribution file from parrot_olympe-7.3.0-py3-none-manylinux_2_27_x86_64.whl or the specific parrot-olympe version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_parrot-olympe_downloaded_file>

On Unix/macOs:

pip install <path_to_parrot-olympe_downloaded_file>


List distribution:


Project link:

- Homepage
- documentation
- repository