Last active
May 31, 2022 23:07
-
-
Save ocefpaf/863fc5df6ed8444378fbb1211ad8feb1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# See https://www.anaconda.com/understanding-and-improving-condas-performance/ for more info. | |
# help debug channel issues | |
show_channel_urls: true | |
# pip will always be installed with python | |
add_pip_as_python_dependency: true | |
# strict priority and conda-forge at the top will ensure | |
# that all of your packages will be from conda-forge unless they only exist on defaults | |
channel_priority: strict | |
channels: | |
- conda-forge | |
# when using "conda create" for envs these packages will always be installed | |
# adjust that list according your needs, the packages below are just a suggestion! | |
create_default_packages: | |
- ipykernel | |
- jupyter | |
- pip | |
safety_checks: disabled | |
auto_activate_base: false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add conda-forge and activate strict | |
conda config --add channels conda-forge | |
conda config --set channel_priority strict | |
conda config --set show_channel_urls True | |
# Make conda faster ny disabeling checks. | |
conda config --set safety_checks disabled | |
# Do not actiavte base. | |
conda config --set auto_activate_base False | |
# Install these packages by default when using `conda create`. | |
conda config --append create_default_packages ipykernel \ | |
--append create_default_packages jupyter \ | |
--append create_default_packages jupyter_contrib_nbextensions \ | |
--append create_default_packages pip \ | |
--append create_default_packages "blas=*=openblas" # help with the mkl vs openblas issue |
I think it means "any version with the openblas build string", i.e., it could be =1.0=openblas, =1.1=openblas, etc.
Thanks for the explanation @tadeu!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think it means "any version with the openblas build string", i.e., it could be =1.0=openblas, =1.1=openblas, etc.