Skip to content

Instantly share code, notes, and snippets.

@r0oland
Last active February 14, 2025 06:24
Show Gist options
  • Save r0oland/d202be18f10e27ddbf8feaa617d7d5a8 to your computer and use it in GitHub Desktop.
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.1.1
  • 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment