conda

sudo apt install -y curl git wget

# Download Conda from Webiste https://www.anaconda.com/products/distribution
# Ref: https://docs.conda.io/projects/conda/en/latest/user-guide/install/linux.html
wget https://repo.anaconda.com/archive/Anaconda3-2022.10-Linux-x86_64.sh
bash Anaconda3-2022.10-Linux-x86_64.sh
# ENTER
# yes
# ENTER
# yes # to run conda init

sudo reboot

conda create -n d457 python=3.8
# y

conda activate d457
conda install opencv=4.6

Last updated