Installation

This page will guide you through the installation of Tudat(Py). The installation is supported exclusively through the use of a conda package manager, such as Miniconda or Anaconda. Alternative installation procedures are not currently supported, although support for alternatives may be added in the future. If the current procedure is not suitable for your application, then please make a feature request under the respective package at https://github.com/tudat-team or show support for an existing request.

For more details on how to use conda, please refer to our detailed guide (Getting Started with Conda) and the references therein.

Note

Miniconda or Anaconda: when refering to a conda package manager, “Anaconda” will be used regardless of whether you are using the Miniconda or Anaconda interface to conda. See also Anaconda or Miniconda?.

Installing Anaconda

To install Anaconda on your system, see the Installation guide provided in the Anaconda documentation.

Installing Tudat(Py)

Attention

As of TudatPy version 0.7, a number of modifications have been made to how TudatPy deals with vehicle orientations, in particular in the context of thrust and aerodynamic guidance. These changes are, in part, not backwards compatible. See this page for more details. To continue to use the last older version of Tudat, install version 0.6.3.

To install Tudat(Py), we recommend the use of a terminal (command line) interface. On Unix system (Linux and Mac), conda should already be available within the terminal; you can open your terminal directly. On Windows, you can find a program called Anaconda Prompt in the Windows search. Using conda in the Anaconda Prompt is equivalent to the terminal use of conda on Unix. Some Unix commands are made available in this prompt, although most usage is equivalent to the Windows shell (see below for some useful terminal commands).

Attention

The availability and functionality of this Anaconda Prompt in the Miniconda installation for Windows is unstable. Therefore, the use of Miniconda is discouraged for Windows users and Anaconda is recommended istead, as suggested in Getting Started with Conda.

Open a terminal. Then first verify that conda is installed by executing the following command:

conda --version

Next ensure that conda is up-to-date.

conda update conda

Download this environment.yaml (yaml). Then, in your terminal navigate to the directory containing this file and execute the following command (see below for tips on using the command line):

conda env create -f environment.yaml

With the conda environment now installed, you can activate it to work in it using:

conda activate tudat-space

Note

At this point, you may choose to install the development version of TudatPy, which is a conda package that is updated as soon as changes are merged to the development branch of the code on GitHub. To do so, you can run the following command:

conda install -c tudat-team/label/dev tudat
conda install -c tudat-team/label/dev tudatpy

Congratulations! You have now installed Tudat and TudatPy and are ready to start running your simulations and analyses! We recommend you get started by having a look at our Examples.

If there are any issues with the installation process, please submit an issue on the tudatpy-feedstock. If there are issues running examples, please submit an issue on the tudatpy repository.

Note

New to the command-line? The following commands may be useful to you:

Command effect

Unix (Linux & macOS)

Windows

Enter a directory using a path (relative or absolute)

cd <abs/rel path>

cd <abs/rel path>

Go back to the parent directory

cd ..

cd ..

List the contents of the current working directory

ls

dir

For more help on getting started with the command-line interface (CLI), you could start with a tutorial.

Updating Tudat(Py)

To update an existing installation of tudatpy, activate your tudat-space environment:

conda activate tudat-space

Then execute the following command to install the latest version of tudatpy:

conda install -c tudat-team tudatpy

Note that using this command may also update additional packages (such as tudat) that are needed to run the latest version of tudatpy.

Warning

It can happen that running the install command above does not update tudatpy to the latest version (which can be checked on the Anaconda website). In that case it is recommended to execute the following command (while still in the tudat-space environment):

conda install --update-deps -c tudat-team tudatpy

Building your own TudatPy kernel

If you would prefer to not use a conda package, but instead build your own tudatpy kernel from the source code, clone the tudat-bundle repository from here and follow the instructions in the README. To build the latest version of the kernel, switch both the tudat and tudatpy repositories to the master branch in step 3 of the README. To build the \dev version, use both repositories to the develop branch.

Note

This workflow is not recommended for new users