Reputation: 10176
I use Windows 10 64bit alongside with Anaconda3 64bit. This yields a Python 64bit installation. With that, I'm creating .exe files using PyInstaller, but obviously, it packs the Python 64bit version into the .exe, so this will NOT run on a 32bit machine.
To make an exe for a 32bit machine, I'd need to use Python 32bit. Is there a way to create a 32bit Python environment alongside my current Anaconda installation? Or would I need to download yet another Anaconda as second installation, which is kinda ugly IMHO?
Thanks!
Upvotes: 1
Views: 786
Reputation: 1117
set CONDA_FORCE_32BIT=1
. This command set a temp env var for current terminal and switch the conda to 32-bit modeUpvotes: 1