Skip to content

Instantly share code, notes, and snippets.

@r0oland
Last active January 11, 2026 19:34
Show Gist options
  • Select an option

  • Save r0oland/d202be18f10e27ddbf8feaa617d7d5a8 to your computer and use it in GitHub Desktop.

Select an option

Save r0oland/d202be18f10e27ddbf8feaa617d7d5a8 to your computer and use it in GitHub Desktop.
Conda

Conda Cheat Sheet

  • fix issues with powershell and conda 24.x

    • conda install -n base -c defaults conda=25.*
  • Create a new environment:

    • conda create --name myenv python=3.8
  • Update Python / Conda packages using mamba:

    • mamba update --all
  • standard tools I basically always need:

    • mamba install matplotlib regex pandas numpy -y

conda config --set solver libmamba

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment