Я использую ноутбук IBM Watson Studio Jupyter. Когда я попытался добавить новый канал http://anaconda.org с помощью! Conda config --append channel https://anaconda.org. Теперь, когда я пытаюсь установить какой-либо пакет, я получаю сообщение об ошибке:
Solving environment: failed
CondaHTTPError: HTTP 404 NOT FOUND for url <https://anaconda.org/noarch/repodata.json>
Elapsed: 00:00.786398
CF-RAY: 55dbd84b6f44bf00-FRA
The remote server could not find the noarch directory for the
requested channel with url: https://anaconda.org
As of conda 4.3, a valid channel must contain a `noarch/repodata.json` and
associated `noarch/repodata.json.bz2` file, even if `noarch/repodata.json` is
empty. please request that the channel administrator create
`noarch/repodata.json` and associated `noarch/repodata.json.bz2` files.
$ mkdir noarch
$ echo '{}' > noarch/repodata.json
$ bzip2 -k noarch/repodata.json
You will need to adjust your conda configuration to proceed.
Use `conda config --show channels` to view your configuration's current state.
Further configuration help can be found at <https://conda.io/docs/config.html>.