qq_21478261 2022-08-06 10:01:59 阅读数:709
If you use conda to download the Python package and build the environment on weekdays, and you clearly set the domestic source, it is still very slow, very slow, very slow,
Are you crazy, have a similar experience, like or watch at the end of the article.
This issue introduces a Python package manager Mamba:
Install directly with conda, the following line solves,
conda install mamba -n base -c conda-forge
If conda is not configured, you can simply configure it by referring to the previous article:
Using Anaconda to build a Python environment under Windows and Linux
Simply compare the difference between mamba and conda,
Conda on the left, mamba on the right, almost exactly the same, so after using conda, mamba can be used with almost no learning.
#Take plotnine installation as an examplemamba install plotnine #Perfect replacement for turtle speed conda install plotnine
3.00 MB/s is quite gratifying, after all conda is often several kb/s!
mamba create --name python3.5 python=3.5 #Perfect replacement for conda
The above interface appears, the build is successful, here Note️, the activation and exit of the environment can only be done using conda activate and conda deactivate
conda activate python3.5 #Activate python3.5 environmentconda deactivate #Exit python3.5 environment
Further study:
版权声明:本文为[qq_21478261]所创,转载请带上原文链接,感谢。 https://pythonmana.com/2022/218/202208060955165141.html