How update/remove conda-forge channel from Anaconda?

Vinicius

I want to install Orange3 through conda. So I type in Anaconda Prompt

conda config --add channels confa-forge

After that I try to install Orange3

conda install orange3

But the Anaconda prompt show this error message

CondaHTTPEErroR: HTTP 404 NOT FOUND for url <https://conda.anaconda.org/confa-forge/noarch/repodata.json>

So I realize that I write confa-forge instead conda-forge.

How can I delete the channel confa-forge? Or Can I update the channel to conda-forge?

Prayson W. Daniel

You can use:

conda config --show channels

This will list your channels

conda config --remove channels NOT_WANTED

This will remove the channel called NOT_WANTED(Assuming that it is part of your list e.g. your confa-forge)

BTW, I will recommend --append channel insteading of --add adding them

conda config --append channels CHANNEL_NAME

Why: If you do:

conda config --add channels conda-forge 

This will make conda-forge first hit channel. Your anaconda's default channel will get lower priority. Some of your packages will start updating to conda-forge.

Instead, do this:

conda config --append channels conda-forge

This keeps your default channel high in priority. Packages will be searched on your default before going to conda-forge :)

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How update/remove conda-forge channel from Anaconda?

From Dev

What is the full conda-forge channel url?

From Dev

How can I remove a URL channel from Anaconda?

From Dev

Installing conda recipes from a Binstar channel

From Dev

Python conda - How to upgrade package not available on anaconda

From Dev

How to install Anaconda in virtual environment of conda.

From Dev

change default environment from (base) to (env) in conda/anaconda in Ubuntu

From Dev

conda build requirement: add package from specific channel

From Java

conda 4.7.7 ->4.6 - Collecting package metadata (current_repodata.json) - (channel conda-forge) ipywidgets-5.2.3-py36_0 due to InvalidSpec: ==1.*

From Dev

conda 4.7.7 ->4.6 - Collecting package metadata (current_repodata.json) - (channel conda-forge) ipywidgets-5.2.3-py36_0 due to InvalidSpec: ==1.*

From Dev

How to install PyPi packages using anaconda conda command

From Dev

Conda custom channel on windows

From Dev

Pubnub - How to UnPublish from a channel

From Dev

Anaconda: conda update all conflict

From Java

What are the differences between Conda and Anaconda?

From Dev

pip vs conda in anaconda enviroment

From Dev

Specific package version with conda-forge

From Java

Should conda, or conda-forge be used for Python environments?

From Dev

Should conda, or conda-forge be used for Python environments?

From Dev

How do I open another channel from one channel in Roku?

From Dev

How to test the broadcast made to a channel from different channel or controller?

From Java

How can I install pandas 1.1.0 on Mac under anaconda and get past conda hanging on "Solving environment"

From Java

How do I keep track of pip-installed packages in an Anaconda (Conda) environment?

From Dev

Anaconda: Where and how to install a non-distribution package to support a flask-wtf conda recipe?

From Dev

How do I install libsvm in a conda environment so that I can import svm in anaconda?

From Java

How to uninstall Anaconda completely from macOS

From Java

How to remove anaconda from windows completely?

From Dev

How to uninstall Anaconda completely from macOS

From Dev

How to downgrade Python from 3.7 to 3.5 in Anaconda

Related Related

  1. 1

    How update/remove conda-forge channel from Anaconda?

  2. 2

    What is the full conda-forge channel url?

  3. 3

    How can I remove a URL channel from Anaconda?

  4. 4

    Installing conda recipes from a Binstar channel

  5. 5

    Python conda - How to upgrade package not available on anaconda

  6. 6

    How to install Anaconda in virtual environment of conda.

  7. 7

    change default environment from (base) to (env) in conda/anaconda in Ubuntu

  8. 8

    conda build requirement: add package from specific channel

  9. 9

    conda 4.7.7 ->4.6 - Collecting package metadata (current_repodata.json) - (channel conda-forge) ipywidgets-5.2.3-py36_0 due to InvalidSpec: ==1.*

  10. 10

    conda 4.7.7 ->4.6 - Collecting package metadata (current_repodata.json) - (channel conda-forge) ipywidgets-5.2.3-py36_0 due to InvalidSpec: ==1.*

  11. 11

    How to install PyPi packages using anaconda conda command

  12. 12

    Conda custom channel on windows

  13. 13

    Pubnub - How to UnPublish from a channel

  14. 14

    Anaconda: conda update all conflict

  15. 15

    What are the differences between Conda and Anaconda?

  16. 16

    pip vs conda in anaconda enviroment

  17. 17

    Specific package version with conda-forge

  18. 18

    Should conda, or conda-forge be used for Python environments?

  19. 19

    Should conda, or conda-forge be used for Python environments?

  20. 20

    How do I open another channel from one channel in Roku?

  21. 21

    How to test the broadcast made to a channel from different channel or controller?

  22. 22

    How can I install pandas 1.1.0 on Mac under anaconda and get past conda hanging on "Solving environment"

  23. 23

    How do I keep track of pip-installed packages in an Anaconda (Conda) environment?

  24. 24

    Anaconda: Where and how to install a non-distribution package to support a flask-wtf conda recipe?

  25. 25

    How do I install libsvm in a conda environment so that I can import svm in anaconda?

  26. 26

    How to uninstall Anaconda completely from macOS

  27. 27

    How to remove anaconda from windows completely?

  28. 28

    How to uninstall Anaconda completely from macOS

  29. 29

    How to downgrade Python from 3.7 to 3.5 in Anaconda

HotTag

Archive