set CONDA_FORCE_32BIT=1 //切换到32位 conda create --name python36 python=3.6 //创建一个python3.6的环境,命名为python36 conda info --envs //查看是否添加成功 activate python36 //切换到python3.6环境 python --version //确认python环境 |
pip -V //再次确认是否为32位的pip pip install pyinstaller //安装pyinstaller |