Conda cheatsheet

1 · zeppeh · Jan. 29, 2023, 7:40 p.m.
General stuff: Directly install mamba into a new conda enviroment or install mambaforge in the first place (mamba is per default installed) install pip in the default (base) enviroment install pip packages only if they aren’t available on conda Create enviroment yml file conda list -e > enviroment.yml Create new enviroment mamba create -n 'enviroment' Create new enviroment based on a yml file mamba env create --file rnaquant_env.yaml List your enviroments conda info --envs List all package...