Skip to content

Instantly share code, notes, and snippets.

View kandersolar's full-sized avatar
🐌
Nigel the snail

Kevin Anderson kandersolar

🐌
Nigel the snail
  • Sandia National Laboratories
View GitHub Profile
@kandersolar
kandersolar / cheat_sheet.rst
Last active February 25, 2022 13:40
Cheat sheet for conda envs, git, et al

Conda

  • create a new environment
    conda create -n myenv python=3.7
  • delete an environment
    conda env remove --name myenv
  • show environments
    conda env list