reference
www.cnblogs.com/dgwblog/p/1…
www.jianshu.com/p/e578f9249…
-
PIP will list all packages in conda.
-
Conda standard Virtualenvwrappe L, but some enhanced features;
- Clone a Python environment that does not exist locally
Conda create --name New environment name --clone the old environment name
; - Create a local version of Python that is not installed (you need to add searchable sources, such as default source python==3.5),
Conda config – add channels after add the rest of the source to find at https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/.
set CONDA_FORCE_32BIT=1
Switch to 32 bitsset CONDA_FORCE_32BIT=0
Switch to 64 bitsConda create -n Specifies the environment name python=3.7
; Conda 64-bit creates 64-bit Python by default. Switching to 32-bit installation is the only way to install 32-bit python
- Clone a Python environment that does not exist locally
-
Conda install is not easy to use and needs to work with PIP.