Installing anaconda
wget https://repo.anaconda.com/archive/Anaconda3-2024.10-1-Linux-x86_64.sh
Enter
q
yes
yes
#use absolute path
/home/stark/anaconda3/bin/conda init
source ~./bashrc
#Create an env conda create -n EnvName python=3.12 #enter the env conda activate EnvName #Install the required packages now
Create your directory and open visual studio code - if you are using `wsl` - make sure to install the wsl plugin and login - select the new `EnvName` at the bottom right corner in VS Code
Comments
Post a Comment