Skip to content

Instantly share code, notes, and snippets.

@juliennonin
Created January 6, 2022 09:32
Show Gist options
  • Save juliennonin/239e69c17a51f7f39fa1e6e0804bbd13 to your computer and use it in GitHub Desktop.
Save juliennonin/239e69c17a51f7f39fa1e6e0804bbd13 to your computer and use it in GitHub Desktop.
  • create an empty env conda create -n new_env
  • activate it conda activate new_env
  • add conda-forge as the first channel conda config --env --add channels conda-forge
  • ensure that conda-forge is used if the package is available conda config --env --set channel_priority strict
  • install packagesconda install pandas scikit-learn matplotlib
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment