I am trying to install flask using conda and I got the following error.
conda install flask
Channels:
- conda-forge
- defaults
- intel
Platform: win-64
Collecting package metadata (repodata.json): failed
UnavailableInvalidChannel: HTTP 403 FORBIDDEN for channel intel <https://conda.anaconda.org/intel>
After doing some research it looks like the intel channel is having issues, so I decided to remove it from my conda config using conda config --remove channels intel
.
I ran conda config --show-sources
to verify that the channel is removed from my .condarc configuration file.
This was my output:
==> C:\Users\[Username]\.condarc <==
channels:
- conda-forge
- defaults
For some reason when I try running conda install flask
I continue to get the error UnavailableInvalidChannel: HTTP 403 FORBIDDEN for channel intel <https://conda.anaconda.org/intel>
because conda is still including the intel channel in my channels list.
I'm not sure what else I can do to remove the intel channel and get conda to stop using it.
As mentioned above I've tried removing the channel using the conda config. I also restarted my powershell instance and opened a new one which resulted in the same error. I restarted my computer as well. Last I tried conda clean --all
with hopes that maybe the channel list was stored in the conda cache.
conda config --set allow_non_channel_urls True
should allowconda install
to ignore unreachable channels, in your caseintel
– Copeland