Installation Instructions¶
The BEAT framework is distributed as conda packages for Linux and MacOS.
Install conda (miniconda is preferred) and get familiar with it.
Make sure you have an up-to-date conda installation (conda 4.4 and above is needed) with the correct configuration by running the commands below:
$ conda update -n base conda $ conda config --set show_channel_urls True
Create an environment for BEAT:
$ conda create --name beat \ --override-channels \ -c https://www.idiap.ch/software/beat/conda \ -c defaults \ python=3 beat.editor $ conda activate beat $ conda config --env --add channels defaults $ conda config --env --add channels https://www.idiap.ch/software/beat/conda
Install other packages that you may need in this environment if you’re running local tests. For example:
$ conda install tensorflow opencv ...
The commands,
beat
andbeat editor serve
, should be available.
Tip
Repeat the last three steps for every conda environment that you create including BEAT components.