[Exception] python download datascience error PackagesNotFoundError: The following packages are not available from curre

Pycharm executes the download command of datascience, as follows

D:\develop\Anaconda3\Scripts\conda.exe install -p D:/develop/Anaconda3 datascience -y

The error message is as follows:

PackagesNotFoundError: The following packages are not available from current channels:
-------------------------------------------
Collecting package metadata (current_repodata.json): ...working... done
Solving environment: ...working... failed with initial frozen solve. Retrying with flexible solve.
Collecting package metadata (repodata.json): ...working... done
Solving environment: ...working... failed with initial frozen solve. Retrying with flexible solve.


PackagesNotFoundError: The following packages are not available from current channels:

  - datascience

Current channels:

  - https://repo.anaconda.com/pkgs/main/win-64
  - https://repo.anaconda.com/pkgs/main/noarch
  - https://repo.anaconda.com/pkgs/r/win-64
  - https://repo.anaconda.com/pkgs/r/noarch
  - https://repo.anaconda.com/pkgs/msys2/win-64
  - https://repo.anaconda.com/pkgs/msys2/noarch

To search for alternate channels that may provide the conda package you're
looking for, navigate to

    https://anaconda.org

and use the search bar at the top of the page.

According to the error message, enter the official website https://anaconda.org, search for datascience, enter the page, https://anaconda.org/conda-forge/datascience
insert image description here
run the command, and solve it successfully

conda install -c conda-forge datascience

Guess you like

Origin blog.csdn.net/Supreme7/article/details/131524226