anaconda3下64位python和32位python共存
时间:2021-04-07 11:23:01
收藏:0
阅读:0
参考: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
评论(0)