Jonas Haag
Jonas Haag
Can you please monitor memory usage during the installation?
Do you have any settings to successfully allow `repodata.json` download with the `curl` binary in your environment?
I think what you ran is in fact NOT curl but something built in to PowerShell that’s called curl
Hm that's curious, I wonder why you don't even need to provide the certificate file to curl? Are there any environment variables or system settings that may impact curl? From...
Is this fixed?
Is this still an issue?
The easiest way to reinstall would be to remove Conda entirely (delete all the folders from your computer) and then install Mambaforge.
I'm not saying you should do this but you can try something like ``` mamba env export -n yourenv --from-history > environment.yml ``` which will create an `environment.yml` file from...
You use the command above to create the yml file.
It is stored in the folder where you execute the command. Assuming that you are using bash: ``` pwd # eg. /C/Users/abc/ mamba env export -n yourenv --from-history > environment.yml...