Reputation: 95
I accidentally installed the wrong Windows version (32-bit) of MiniConda onto my work computer and want to change it to 64-bit. What would be the best way to accomplish this task without causing issues of dependencies?
Would it be to just download the 64-bit installer here and hopefully it can correct the dependencies? Or should I uninstall all of the files in the /miniconda/ folder and then install with the correct .exe file?
Any advice you can provide would be greatly appreciated.
Upvotes: 2
Views: 655
Reputation: 12355
There is no upgrade from 32 to 64 bit
conda env export > environment.yml
conda env create -f environment.yml
And when using Miniconda familiarize yourself with:
https://conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#
Upvotes: 1