我运行 Windows 10 并安装了 Anaconda。我正在尝试安装cudf
,但我一再失败:
(tf2) C:\WINDOWS\system32>pip install cudf-cuda100
ERROR: Could not find a version that satisfies the requirement cudf-cuda100 (from versions: none)
ERROR: No matching distribution found for cudf-cuda100
(tf2) C:\WINDOWS\system32>conda install -c nvidia/label/cuda10.0 -c rapidsai/label/cuda10.0 -c numba -c conda-forge -c defaults cudf
Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Collecting package metadata (repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
PackagesNotFoundError: The following packages are not available from current channels:
- cudf
Current channels:
- https://conda.anaconda.org/nvidia/label/cuda10.0/win-64
- https://conda.anaconda.org/nvidia/label/cuda10.0/noarch
- https://conda.anaconda.org/rapidsai/label/cuda10.0/win-64
- https://conda.anaconda.org/rapidsai/label/cuda10.0/noarch
- https://conda.anaconda.org/numba/win-64
- https://conda.anaconda.org/numba/noarch
- 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.
我的 CUDA 版本:
(tf2) C:\WINDOWS\system32>nvcc --version
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2018 NVIDIA Corporation
Built on Sat_Aug_25_21:08:04_Central_Daylight_Time_2018
Cuda compilation tools, release 10.0, V10.0.130
你会建议我怎么做?