conda create –name myenv python=3.10 # create new env
conda activate myenv # activate env
conda install numpy # use conda installing package
conda deactivate
conda remove –name myenv –all # remove an env
conda config –add channels conda-forge # add conda-forge channel
conda config –set channel_priority strict #install from conda-forge channel first
conda install -c conda-forge numpy
conda install numpy
conda create -n myenv -c conda-forge python=3.10
conda update –all -c conda-forge # update all package to the latest version in conda-forge
conda config –show channels
conda config –remove channels conda-forge # remove conda-forge channel