This is the official repo for kep3 (C++ library) and its twin pykep (python package) version 3, the next-generation astrodynamics toolbox. Version 3 is not just an update: it’s a full reimagining of what a space trajectory coolbox can be.
The code is still under development and we will only release the conda and PyPi packages when we are confidnt all is well coordinated. In the meantime, feel free to play around discuss API and help us debug :)
If you care about orbital mechanics, trajectory optimization, or spacecraft mission design — pykep belongs in your toolkit. From students and researchers to mission designers and competition participants (hello, GTOC!), pykep is the Swiss Army knife of astrodynamics.
⚠️ The old pykep version is no longer actively maintained. version 3 is the future.
What is kep3?
kep3 is a C++ library with a rich Python interface (pykep) for space flight mechanics research. Built from the ground up with performance, usability, and extensibility in mind, it brings together everything the astrodynamics community has been asking for tailored at scientists who want to perform cutting edge research in space flight mechanics.
Whether you’re computing Lambert arcs, propagating Keplerian orbits, or designing complex multi-gravity-assist trajectories and designing the next generation solvers for low-thrust optimization, kep3 has you covered with clean APIs, rigorous numerics, and serious speed.
Versioning policy
Starting from the v3 line, this project follows Semantic Versioning for releases:
MAJOR: incompatible API changes.
MINOR: backward-compatible new features.
PATCH: backward-compatible bug fixes.
For the C++ shared library (kep), we track ABI compatibility with SOVERSION:
VERSION is set to the full project version (MAJOR.MINOR.PATCH).
SOVERSION is tied to MAJOR.
In practice, if MAJOR changes, downstream binaries should expect possible ABI incompatibilities and rebuild/relink.
Installation
Choose one of the following installation paths, depending on your use case.
1. Conda (preferred)
Conda is the recommended option for a fully managed scientific Python stack.
conda install -c conda-forge pykep
Current status: conda-forge currently provides the stable v1 line. v3 packages will be published once the v3 API is stabilized.
2. PyPI (pip)
Use pip if you prefer Python wheels from PyPI.
pip install pykep
3. Build from source (recommended for v3 development now)
Building from source is currently the recommended path for v3 development and testing.
-DCMAKE_EXPORT_COMPILE_COMMANDS=1
Produces build/compile_commands.json, a machine-readable compilation database used by IDEs, language servers, static analyzers, and refactoring tools.
-DCMAKE_INSTALL_PREFIX="$CONDA_PREFIX"
Installs headers, libraries, CMake package files, and Python artifacts into the active conda environment, avoiding contamination of system paths.
-DCMAKE_PREFIX_PATH="$CONDA_PREFIX"
Prioritizes dependency resolution from the active conda environment (for example Boost, fmt, heyoka, xtensor, xtensor-blas). This improves reproducibility across machines.
-Dkep3_BUILD_PYTHON_BINDINGS=ON
Enables build and installation of the pykep Python extension module.
-Dkep3_BUILD_CPP_LIBRARY=OFF
Controls whether the kep3 C++ library is built from source (default). When set to OFF, CMake will instead locate an already-installed kep3 via find_package and report a fatal error if it is not found. This is useful when you only want to build the Python bindings (or tests/benchmarks) against a kep3 that has already been installed.
-Dkep3_BUILD_TESTS=ON
Builds the C++ unit-test targets.
-Dkep3_BUILD_BENCHMARKS=ON
Builds benchmark executables under benchmark/.
-DKEP3_VERBOSE_CONFIGURE=ON
Emits additional configure-time diagnostics useful for dependency and toolchain troubleshooting.
Common CMake build-type flag
-DCMAKE_BUILD_TYPE=Debug
Use this with single-config generators (for example Ninja and Unix Makefiles) when you need debug symbols and lower optimization.
Example: full configure command with common optional targets
kep3 is developed against C++23, so code navigation, completion and diagnostics require a
reasonably recent language server. We use clangd, which is shipped
by the development environment itself (clang-tools in kep3_devel.yml).
Everything clangd needs is produced by the configure step described above: as long as you pass
-DCMAKE_EXPORT_COMPILE_COMMANDS=1, the resulting build/compile_commands.json is
self-contained and no additional configuration file is required.
Steps
Create the environment and configure the project as described in
Build from source. clangd discovers
compile_commands.json automatically in the build/ sub-directory.
Install the
clangd extension
in VS Code (the Microsoft C/C++ extension is not needed, and the two should not be enabled
together as they conflict).
Point the extension at the clangd from the active environment, otherwise it silently downloads
and uses its own (often outdated) copy. Print the path with:
echo "$CONDA_PREFIX/bin/clangd"
and put it in .vscode/settings.json (this file is git-ignored, as the path is machine-specific):
Run clangd: Restart language server from the command palette (Ctrl+Shift+P).
Troubleshooting
Diagnostics can be reproduced outside the editor, which is the quickest way to tell a genuine code
error from a misconfigured language server:
clangd --check=src/udpla/keplerian.cpp
Invalid value 'c++23' in '-std=c++23' — the language server is too old for C++23. The
extension is not using the clangd from the environment; re-check step 3, then confirm the
version reported at the top of the clangd: Open log output.
'boost/...' file not found, 'fmt/core.h' file not found — the project was configured without
-DCMAKE_EXPORT_COMPILE_COMMANDS=1, or clangd is reading a stale/different build directory.
'stddef.h' file not found — clang-tools and clangxx are installed at mismatched major
versions; they locate each other through lib/clang/<major> and must agree. Re-create the
environment from kep3_devel.yml, which pins both.
A coolbox for trajectory design.
Explore the docs »
Report bug · Request feature · Discuss
Pykep version 3
This is the official repo for kep3 (C++ library) and its twin pykep (python package) version 3, the next-generation astrodynamics toolbox. Version 3 is not just an update: it’s a full reimagining of what a space trajectory coolbox can be.
The code is still under development and we will only release the conda and PyPi packages when we are confidnt all is well coordinated. In the meantime, feel free to play around discuss API and help us debug :)
If you care about orbital mechanics, trajectory optimization, or spacecraft mission design — pykep belongs in your toolkit. From students and researchers to mission designers and competition participants (hello, GTOC!), pykep is the Swiss Army knife of astrodynamics.
What is kep3?
kep3 is a C++ library with a rich Python interface (pykep) for space flight mechanics research. Built from the ground up with performance, usability, and extensibility in mind, it brings together everything the astrodynamics community has been asking for tailored at scientists who want to perform cutting edge research in space flight mechanics.
Whether you’re computing Lambert arcs, propagating Keplerian orbits, or designing complex multi-gravity-assist trajectories and designing the next generation solvers for low-thrust optimization, kep3 has you covered with clean APIs, rigorous numerics, and serious speed.
Versioning policy
Starting from the v3 line, this project follows Semantic Versioning for releases:
MAJOR: incompatible API changes.MINOR: backward-compatible new features.PATCH: backward-compatible bug fixes.For the C++ shared library (
kep), we track ABI compatibility withSOVERSION:VERSIONis set to the full project version (MAJOR.MINOR.PATCH).SOVERSIONis tied toMAJOR.In practice, if
MAJORchanges, downstream binaries should expect possible ABI incompatibilities and rebuild/relink.Installation
Choose one of the following installation paths, depending on your use case.
1. Conda (preferred)
Conda is the recommended option for a fully managed scientific Python stack.
Current status: conda-forge currently provides the stable v1 line. v3 packages will be published once the v3 API is stabilized.
2. PyPI (pip)
Use pip if you prefer Python wheels from PyPI.
3. Build from source (recommended for v3 development now)
Building from source is currently the recommended path for v3 development and testing.
kep3andpykep:Configure Flags Reference
The configure step controls where
kep3is installed, where dependencies are discovered, and which optional targets are generated.Core flags used above
-DCMAKE_EXPORT_COMPILE_COMMANDS=1Producesbuild/compile_commands.json, a machine-readable compilation database used by IDEs, language servers, static analyzers, and refactoring tools.-DCMAKE_INSTALL_PREFIX="$CONDA_PREFIX"Installs headers, libraries, CMake package files, and Python artifacts into the active conda environment, avoiding contamination of system paths.-DCMAKE_PREFIX_PATH="$CONDA_PREFIX"Prioritizes dependency resolution from the active conda environment (for exampleBoost,fmt,heyoka,xtensor,xtensor-blas). This improves reproducibility across machines.-Dkep3_BUILD_PYTHON_BINDINGS=ONEnables build and installation of thepykepPython extension module.Optional project flags
-Dkep3_BUILD_CPP_LIBRARY=OFFControls whether thekep3C++ library is built from source (default). When set toOFF, CMake will instead locate an already-installedkep3viafind_packageand report a fatal error if it is not found. This is useful when you only want to build the Python bindings (or tests/benchmarks) against akep3that has already been installed.-Dkep3_BUILD_TESTS=ONBuilds the C++ unit-test targets.-Dkep3_BUILD_BENCHMARKS=ONBuilds benchmark executables underbenchmark/.-DKEP3_VERBOSE_CONFIGURE=ONEmits additional configure-time diagnostics useful for dependency and toolchain troubleshooting.Common CMake build-type flag
Use this with single-config generators (for example
NinjaandUnix Makefiles) when you need debug symbols and lower optimization.Example: full configure command with common optional targets
IDE setup (C++ code intelligence)
kep3is developed against C++23, so code navigation, completion and diagnostics require a reasonably recent language server. We use clangd, which is shipped by the development environment itself (clang-toolsinkep3_devel.yml).Everything clangd needs is produced by the configure step described above: as long as you pass
-DCMAKE_EXPORT_COMPILE_COMMANDS=1, the resultingbuild/compile_commands.jsonis self-contained and no additional configuration file is required.Steps
Create the environment and configure the project as described in Build from source. clangd discovers
compile_commands.jsonautomatically in thebuild/sub-directory.Install the clangd extension in VS Code (the Microsoft C/C++ extension is not needed, and the two should not be enabled together as they conflict).
Point the extension at the clangd from the active environment, otherwise it silently downloads and uses its own (often outdated) copy. Print the path with:
and put it in
.vscode/settings.json(this file is git-ignored, as the path is machine-specific):clangd: Restart language serverfrom the command palette (Ctrl+Shift+P).Troubleshooting
Diagnostics can be reproduced outside the editor, which is the quickest way to tell a genuine code error from a misconfigured language server:
Invalid value 'c++23' in '-std=c++23'— the language server is too old for C++23. The extension is not using the clangd from the environment; re-check step 3, then confirm the version reported at the top of theclangd: Open logoutput.'boost/...' file not found,'fmt/core.h' file not found— the project was configured without-DCMAKE_EXPORT_COMPILE_COMMANDS=1, or clangd is reading a stale/different build directory.'stddef.h' file not found—clang-toolsandclangxxare installed at mismatched major versions; they locate each other throughlib/clang/<major>and must agree. Re-create the environment fromkep3_devel.yml, which pins both.