Stable
To grab the latest stable release simply run
pip install openscvxto install OpenSCVx in your python environment.
Or using uv:
uv pip install openscvxFor optional dependencies:
pip install openscvx[gui,cvxpygen]
# or with uv
uv pip install openscvx[gui,cvxpygen]Nightly
To install the latest development version (nightly):
pip install --pre openscvxWith optional dependencies:
pip install --pre openscvx[gui,cvxpygen]Or using uv:
uv pip install --pre openscvx
# With optional dependencies
uv pip install --pre openscvx[gui,cvxpygen]Note: The --pre flag tells pip/uv to install pre-release versions (e.g., 1.2.4.dev3) from PyPI.
Alternatively, for local development with the latest source:
# Clone the repo
git clone https://github.com/haynec/OpenSCvx.git
cd OpenSCvx
# Install in editable/development mode
pip install -e .
# or with uv
uv pip install -e .The main packages are:
cvxpy- is used to formulate and solve the convex subproblemsjax- is used for determining the Jacobians using automatic differentiation, vectorization, and ahead-of-time (AOT) compilation of the dynamics and their Jacobiansnumpy- is used for numerical operationsdiffrax- is used for the numerical integration of the dynamicstermcolor- is used for pretty command line outputplotly- is used for all visualizations
These will be installed automatically, but can be installed via conda or pip if you are building from source.
For interactive 3D plotting and real-time visualization, additional packages are required:
pyqtgraph- is used for interactive 3D plotting and real-time visualizationPyQt5- provides the Qt5 GUI framework for pyqtgraphscipy- is used for spatial transformations in plotting functionsPyOpenGL- provides OpenGL bindings for Python, required for 3D plottingPyOpenGL_accelerate- (optional) speeds up PyOpenGL
For local development:
pip install -e ".[gui]"The GUI features include:
- Interactive 3D trajectory visualization with
plot_animation_pyqtgraph() - SCP iteration animation with
plot_scp_animation_pyqtgraph() - Camera view animation with
plot_camera_animation_pyqtgraph() - Real-time optimization visualization in examples like
drone_racing_realtime.py
For code generation and faster solver performance, CVXPYGen can be installed:
cvxpygen- enables code generation for faster solver performanceqocogen- custom solver backend for CVXPYGen (included with cvxpygen extras)
To install with CVXPYGen support:
pip install openscvx[cvxpygen]Or for both GUI and CVXPYGen:
pip install openscvx[gui,cvxpygen]CVXPYGen features include:
- Automatic C++ code generation for optimization problems
- Faster solver performance through compiled code
- Support for custom solver backends like QOCOGen
This git repository can be installed using https
git clone https://github.com/haynec/OpenSCvx.gitor ssh
git clone git@github.com:haynec/OpenSCvx.gitDependencies can then be installed using Conda or Pip
Via Conda
-
Clone the repo using https or ssh
-
Create a conda environment with Python:
conda create -n openscvx python>=3.9 -
Activate the environment:
conda activate openscvx
-
Install the package with dependencies:
pip install -e .Or install with optional dependencies:
pip install -e ".[gui,cvxpygen]"
Via uv
-
Prerequisites
- Install uv
-
Clone the repo using https or ssh
-
Create virtual environment and install the package:
uv venv source .venv/bin/activate # On Windows: .venv\Scripts\activate uv pip install -e .
Or install with optional dependencies:
uv pip install -e ".[gui,cvxpygen]"
Via pip
-
Prerequisites Python >= 3.9
-
Clone the repo using https or ssh
-
Create virtual environment (called
venvhere) and source itpython3 -m venv venv source venv/bin/activate -
Install the package with dependencies:
pip install -e .Or install with optional dependencies:
pip install -e ".[gui,cvxpygen]"
See examples/ folder for several example trajectory optimization problems grouped by application.
To run a problem simply run any of the examples directly, for example:
python3 examples/abstract/brachistochrone.pyNote: To run the examples, you'll need to clone this repository and install OpenSCvx in editable mode (
pip install -e .). See the Local Development section above for detailed installation instructions.
and adjust the plotting as needed.
Check out the problem definitions inside examples/ to see how to define your own problems.
- Standardized Vehicle and Constraint classes
- Implement QOCOGen with CVPYGEN
- Non-Dilated Time Propagation
- Save and reload the compiled JAX code
- Unified Mathematical Interface
- Auto-SCvx Weight Tuning
- Compiled at the subproblem level with JAX
- Single Shot propagation
This repo has the following features:
- Free Final Time
- Fully adaptive time dilation (
sis appended to the control vector) - Continuous-Time Constraint Satisfaction
- FOH and ZOH exact discretization (
tis a state so you can bring your own scheme) - Vectorized and Ahead-of-Time (AOT) Compiled Multishooting Discretization
- JAX Autodiff for Jacobians
This work was supported by a NASA Space Technology Graduate Research Opportunity and the Office of Naval Research under grant N00014-17-1-2433. The authors would like to acknowledge Natalia Pavlasek, Samuel Buckner, Abhi Kamath, Govind Chari, and Purnanand Elango as well as the other Autonomous Controls Laboratory members, for their many helpful discussions and support throughout this work.
Please cite the following works if you use the repository,
@ARTICLE{hayner2025los,
author={Hayner, Christopher R. and Carson III, John M. and Açıkmeşe, Behçet and Leung, Karen},
journal={IEEE Robotics and Automation Letters},
title={Continuous-Time Line-of-Sight Constrained Trajectory Planning for 6-Degree of Freedom Systems},
year={2025},
volume={},
number={},
pages={1-8},
keywords={Robot sensing systems;Vectors;Vehicle dynamics;Line-of-sight propagation;Trajectory planning;Trajectory optimization;Quadrotors;Nonlinear dynamical systems;Heuristic algorithms;Convergence;Constrained Motion Planning;Optimization and Optimal Control;Aerial Systems: Perception and Autonomy},
doi={10.1109/LRA.2025.3545299}}@misc{elango2024ctscvx,
title={Successive Convexification for Trajectory Optimization with Continuous-Time Constraint Satisfaction},
author={Purnanand Elango and Dayou Luo and Abhinav G. Kamath and Samet Uzun and Taewan Kim and Behçet Açıkmeşe},
year={2024},
eprint={2404.16826},
archivePrefix={arXiv},
primaryClass={math.OC},
url={https://arxiv.org/abs/2404.16826},
}@misc{chari2025qoco,
title = {QOCO: A Quadratic Objective Conic Optimizer with Custom Solver Generation},
author = {Chari, Govind M and A{\c{c}}{\i}kme{\c{s}}e, Beh{\c{c}}et},
year = {2025},
eprint = {2503.12658},
archiveprefix = {arXiv},
primaryclass = {math.OC},
}