首页 > 解决方案 > 无法在pycharm中安装networkit包

问题描述

我是 python 和 pycharm 的新手。我无法在 pycharm 中安装 networkit 包。以下是我得到的错误。有这方面知识的人吗?提前致谢

Solving environment: ...working... failed PackagesNotFoundError: The following packages are not available from current channels:
  - networkit Current channels:
  - https://conda.anaconda.org/anaconda-fusion/osx-64
  - https://conda.anaconda.org/anaconda-fusion/noarch
  - https://repo.anaconda.com/pkgs/main/osx-64
  - https://repo.anaconda.com/pkgs/main/noarch
  - https://repo.anaconda.com/pkgs/free/osx-64
  - https://repo.anaconda.com/pkgs/free/noarch
  - https://repo.anaconda.com/pkgs/r/osx-64
  - https://repo.anaconda.com/pkgs/r/noarch
  - https://repo.anaconda.com/pkgs/pro/osx-64
  - https://repo.anaconda.com/pkgs/pro/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.

标签: pythonmacospycharmanacondanetworkit

解决方案


看来networkit是一个私有包。从 Conda 控制台使用以下命令进行安装:

conda install -c vgauthier networkit

推荐阅读