在全新的 anaconda 环境中安装 apache-beam 失败

Failed to install apache-beam in a brand new anaconda enviornment

我想尝试一下 apache-beam,我用 Python 3.8 创建了一个全新的 conda env,然后我遵循了这个 中的解决方案,我尝试了以下命令但是 none 有效。

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.

其他命令也给了我类似的结果,我在这里遗漏了什么吗?有人可以帮忙吗?

Conda Forge 原料不适用于 win-64 平台。考虑 dropping them an Issue 请求 Windows 个构建。

与此同时,the Python version seems available through Pip。确保您的环境 - 我称之为 my_env - 已安装 pip,然后尝试通过那里安装:

conda install -n my_env pip

conda activate my_env

python -m pip install apache-beam