Reputation: 65
How can I create a exclusively 32 bits conda environment? I tried:
set CONDA_FORCE_32BIT=1
conda create -n py310_32 python=3.10.5
But it didn't work.
Upvotes: 2
Views: 7085
Reputation: 592
Follwing commands will successfully get a 32-bit python. I suppose the main problem is the environment variable. You know windows is this. :(
conda create -n py27_32
conda activate py27_32
conda config --env --set subdir win-32
conda install python=2.7
useful links:
Upvotes: 8