Skip to content

Anaconda on the AIR-T

This tutorial will show you how to create an AirStack Conda environment on the AIR-T for AirStack versions prior to 0.5.0. For installing Anaconda environments on AirStack 0.5.0 and newer, see this tutorial.

Create AirStack Conda Environment

We will now create a conda environment called airstack using the airstack.yml file provided by Deepwave. You may modify this to fit your application.

wget docs.deepwavedigital.com/Open_Source/files/airstack_v0.4.yml
conda env create -f airstack.yml

Testing a New Conda Environment

Copy the conda_test.py script to your AIR-T to test full operation.

conda activate airstack
wget docs.deepwavedigital.com/Open_Source/files/conda_test.py
python conda_test.py

Removing the Conda Environment

To remove the AirStack Conda environment, run the following command:

conda remove --name airstack --all


Last update: September 15, 2021