I am having issues with conda. After running commands such as:
conda install -c /my_conda_channel numpy --offline --override-channels
the default conda channel has now become 'my_conda_channel' so that each subsequent package from this channel supercedes the default channel, which is not what I want. I did the former just for testing purposes.
How do I reset the channel behaviour?
Change the order from
~/.condarc
so thatdefaults
the first channel asand add this line to it
or run the following code in command-line
then again run
Good Luck
Edited for new versions of conda. According to conda doc
It still accepts the old values
true
andfalse
true
:=flexible
false
:=disabled
strict
:= this is a new valueGo to your home directory and open
.condarc
in an editor. Go tochannels
and edit the priority:Now
defaults
will be preferred overmy_conda_channel
. You can also deletemy_conda_channel
.Another option would be to move your channel to the bottom of the priority list.
Run the command....
You should get a response like this...
Verify...
Which should give you something like...