我想要使用apache,我用Python3.8创建了一个全新的conda,然后我遵循了这个问题中的解决方案,我尝试了以下命令,但它们都没有工作。
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.其他命令也给了我类似的结果,我是不是遗漏了什么?有人能帮忙吗?
发布于 2021-08-16 00:29:27
Conda原料并不是为win-64平台构建的.考虑给他们一个问题请求Windows。
同时,Python版本似乎可以通过Pip获得。。确保您的环境(我将称之为my_env )安装了pip,然后尝试在那里安装:
conda install -n my_env pip
conda activate my_env
python -m pip install apache-beamhttps://stackoverflow.com/questions/68793317
复制相似问题