anaconda3下64位python和32位python共存

参考:https://blog.csdn.net/weixin_41710606/article/details/86747877

1. CONDA切换成32位
set CONDA_FORCE_32BIT=1

2. 安装32位的python3.6
conda create -n python32 python=3.6

3. 激活环境 conda activate python32
conda activate python32

4. 安装32位的spyder
conda install spyder

5. 安装32位spyder的包
pip install spyder

原文地址:https://www.cnblogs.com/andylhc/p/14621275.html