【发布时间】:2021-10-17 22:38:45
【问题描述】:
我想尝试一下 apache-beam,我用 Python 3.8 创建了一个全新的 conda env,然后我按照这个 question 中的解决方案,我尝试了以下命令,但它们都不起作用。
conda install apache-beam
conda install -c conda-forge apache-beam
conda install -c conda-forge apache-beam==2.31.0
conda install -c conda-forge/label/cf202003 apache-beam
conda install -c conda-forge/label/cf201901 apache-beam
第二个和第三个命令给了我:
Collecting package metadata (repodata.json): done
Solving environment: failed
PackagesNotFoundError: The following packages are not available from current channels:
- apache-beam
Current channels:
- https://conda.anaconda.org/conda-forge/win-64
- https://conda.anaconda.org/conda-forge/noarch
- 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.
其他命令也给了我类似的结果,我在这里遗漏了什么吗?有人可以帮忙吗?
【问题讨论】:
标签: python pip anaconda conda apache-beam