Skip to content
Olivier Cots edited this page Sep 24, 2022 · 26 revisions

Welcome to the control-toolbox.github.io wiki!

Start dev

In the following, DEV_ROOT is a variable standing for the root where the git repositories are stored. For example,

export DEV_ROOT=${HOME}/dev.

Clone the git repository

cd $DEV_ROOT
git clone git@github.com:control-toolbox/control-toolbox.github.io.git

Create the ct conda environment

Creation from scratch
cd $DEV_ROOT/control-toolbox.github.io
conda env create -f pkg/env/ct-<YOUR_OS>.yaml

Where <YOUR_OS> must be replaced by linux, mac or windows, according to the platform used.

Rebuild the environment
conda activate base
conda env remove --name ct

Then use the "Creation from scratch" to build the gallery environment.

Activate the ct conda environment

conda activate ct

You can use VSCode to code

See https://www.julia-vscode.org/docs/dev/gettingstarted/

Clone this wiki locally