Manual conda Configuration¶
Setup of the conda
configuration in C:\Users\<username>\.condarc
.
Creating the File¶
Create the
.condarc
file in your user directory (C:\Users\<username>\.condarc
).
Note
If you are unable to create a file with a leading dot (.
) but no file
extension in the file explorer, see
https://www.hanselman.com/blog/how-to-create-a-file-with-a-dot-prefix-in-windows-explorer
Configuration¶
To add the
conda
channel forfoxbms
, open theC:\Users\<username>\.condarc
file and addfoxbms
(all letters in lowercase) to thechannels
section. If thedefaults
channel is missing, add it first:channels: - defaults - foxbms
Note
If the
foxbms
channel and thedefaults
entries are already existing in theconda
channels section this step can be skipped.If
conda
is used behind a proxy, theconda
proxy configuration must be adapted accordingly. OpenC:\Users\<username>\.condarc
and edit thehttp
andhttps
proxy information, according to your network:proxy_servers: http: http://user:pass@corp.com:8080 https: https://user:pass@corp.com:8080
Note
If the
conda
proxy is already correctly set, this step can be skipped.A correct setup
conda
configuration inC:\Users\<username>\.condarc
might then look like that:channels: - defaults - foxbms proxy_servers: http: my-company-http:8030 https: my-company-https:8030