gym-pybullet-drones
PyBullet Gymnasium environments for single and multi-agent reinforcement learning of quadcopter control
File Explorer
- test.yml
- dependabot.yml
- architrave.urdf
- beta-presets-bak.txt
- beta-traj.csv
- box.urdf
- cf2.dae
- cf2p.urdf
- cf2x.urdf
- clone_bfs.sh
- eeprom.bin
- ffmpeg_png2mp4.sh
- helix.gif
- helix.png
- marl.gif
- racer.urdf
- rl.gif
- __init__.py
- BaseControl.py
- CTBRControl.py
- DSLPIDControl.py
- MRACControl.py
- __init__.py
- BaseAviary.py
- BaseRLAviary.py
- BetaAviary.py
- CtrlAviary.py
- HoverAviary.py
- MultiHoverAviary.py
- VelocityAviary.py
- __init__.py
- beta.py
- debug.py
- downwash.py
- learn.py
- mrac.py
- pid.py
- pid_velocity.py
- play.py
- __init__.py
- enums.py
- Logger.py
- utils.py
- __init__.py
- test_build.py
- test_examples.py
- .gitignore
- CITATION.cff
- LICENSE
- pyproject.toml
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
conda activate
View Details ▼
conda activate
Activate a conda environment.
See also: `conda deactivate`.
conda activate myenv
Activate an existing environment named `myenv`:
conda activate {{path/to/myenv}}
Activate an existing environment located at custom path:
conda activate --stack myenv
Stack `myenv` environment on top of a previous environment making libraries/commands/variables from both accessible:
conda create
View Details ▼
conda create
Create new conda environments.
conda create {{[-y|--yes]}} {{[-n|--name]}} py39 python=3.9 "numpy>=1.11" scipy
Create a new environment named `py39`, install Python 3.9, NumPy v1.11 or above in it, and the latest stable version of SciPy. Say yes to all confirmations:
conda create {{[-n|--name]}} myenv --file {{file1.yml}} --file {{file2.yml}}
Create a new environment named `myenv` and install packages listed in files:
conda create {{[-p|--prefix]}} {{path/to/myenv}}
Create a new environment at a custom path (i.e. prefix):
conda deactivate
View Details ▼
conda deactivate
Deactivate a conda environment.
conda deactivate
Deactivate a conda environment:
conda list
View Details ▼
conda list
List installed packages in a conda environment.
conda list
List all packages in the current environment:
conda list {{[-n|--name]}} {{environment}}
List packages in the named environment:
conda list {{[-p|--prefix]}} {{path/to/environment}}
List packages installed in a given path:
conda remove
View Details ▼
conda remove
Remove packages from a conda environment.
conda remove scipy
Remove `scipy` from the currently active environment:
conda remove {{[-n|--name]}} {{environment_name}} {{package1 package2 ...}}
Remove a list of packages from the specified environment:
conda remove {{[-n|--name]}} {{environment_name}} --all
Remove all packages and the environment itself:
gcc
View Details ▼
gcc
Preprocess and compile C and C++ source files, then assemble and link them together.
Part of GCC (GNU Compiler Collection).
gcc {{path/to/source1.c path/to/source2.c ...}} {{[-o|--output]}} {{path/to/output_executable}}
Compile multiple source files into an executable:
gcc {{path/to/source.c}} -Wall {{[-o|--output]}} {{output_executable}}
Activate output of all errors and warnings:
gcc {{path/to/source.c}} -Wall {{[-g|--debug]}} -Og {{[-o|--output]}} {{path/to/output_executable}}
Show common warnings, debug symbols in output, and optimize without affecting debugging:
git checkout
View Details ▼
git checkout
Checkout a branch or paths to the working tree.
git checkout -b {{branch_name}}
Create and switch to a new branch:
git checkout -b {{branch_name}} {{reference}}
Create and switch to a new branch based on a specific reference (branch, remote/branch, tag are examples of valid references):
git checkout {{branch_name}}
Switch to an existing local branch:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
pip3
View Details ▼
pip3
This command is an alias of `pip`.
tldr pip
View documentation for the original command:
pytest
View Details ▼
pytest
Run Python tests.
pytest {{path/to/test_file1.py path/to/test_file2.py ...}}
Run tests from specific files:
pytest -k {{expression}}
Run tests with names matching a specific [k]eyword expression:
pytest {{[-x|--exitfirst]}}
Exit as soon as a test fails or encounters an error:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
python3
View Details ▼
python3
This command is an alias of `python`.
tldr python
View documentation for the original command:
apt install
View Details ▼
apt install
Install packages for Debian-based distributions.
sudo apt install {{package}}
Install a package, or update it to the latest version:
sudo apt install {{[-V|--verbose-versions]}} {{package}}
Display verbose package version information during installation or update:
