Hello all,
I’m opening this thread in hopes to find some suggestion on how to solve a problem I have while trying to install a specific Python package for usage of Nvidia GPU’s.
I have to run on my MSI notebook a Python program that makes usage of tensor flow and neural network to perform predictions using a series of csv files as input, and has been developed by a fellow colleague who has now left university.
Following the requirements file, I tried to install by pip the following packages:
nvidia-cublas-cu11==11.10.3.66
nvidia-cuda-cupti-cu11==11.7.101
nvidia-cuda-nvrtc-cu11==11.7.99
nvidia-cuda-runtime-cu11==11.7.99
nvidia-cudnn-cu11==8.5.0.96
nvidia-cufft-cu11==10.9.0.58
nvidia-curand-cu11==10.2.10.91
nvidia-cusolver-cu11==11.4.0.1
nvidia-cusparse-cu11==11.7.4.91
nvidia-nccl-cu11==2.14.3
nvidia-nvtx-cu11==11.7.91
While for almost all of them I did not have any issue (for nvidia-cudnn-cu11 I had to install version v 8.9.4.25 instead of v 8.5.0.96) I am having troubles installing this package, nvidia-nccl-cu11==2.14.3
This is the output I get when I launch the command to install the package:
(NeuralNetwork-Py310) C:\Users\LEOPARD>pip install nvidia-nccl-cu11
Collecting nvidia-nccl-cu11
Downloading nvidia-nccl-cu11-0.0.1.dev5.tar.gz (4.4 kB)
Preparing metadata (setup.py) … error
error: subprocess-exited-with-error
× python setup.py egg_info did not run successfully.
│ exit code: 1
╰─> [17 lines of output]
**Traceback (most recent call last):**
**File "<string>", line 2, in <module>**
**File "<pip-setuptools-caller>", line 35, in <module>**
**File "C:\\Users\\LEOPARD\\AppData\\Local\\Temp\\pip-install-3xgzj8eq\\nvidia-nccl-cu11_3daa06b425794fd68e8c7e2766539b69\\setup.py", line 152, in <module>**
**raise RuntimeError(open("ERROR.txt", "r").read())**
**RuntimeError:**
**###########################################################################################**
**The package you are trying to install is only a placeholder project on PyPI.org repository.**
**This package is hosted on NVIDIA Python Package Index.**
**This package can be installed as:**
**\`\`\`**
**$ pip install nvidia-pyindex
$ pip install nvidia-nccl-cu11**
**\`\`\` ###########################################################################################**
**\[end of output\]**
note: This error originates from a subprocess, and is likely not a problem with pip.
error: metadata-generation-failed
× Encountered error while generating package metadata.
╰─> See above for output.
note: This is an issue with the package mentioned above, not pip.
hint: See above for details.
So I installed nvidia-pyindex (which worked) and then tried to install again nvidia-nccl-cu11, but I again got the same installation error.
Have someone encountered the same issue or are there known workaround for this problem?
My system hardware is an NVIDIA RTX 3070, driver version is 581.29
Thank you very much guys!