NVIDIA / tensorflow

An Open Source Machine Learning Framework for Everyone
https://developer.nvidia.com/deep-learning-frameworks
Apache License 2.0
962 stars 144 forks source link

no matches found: nvidia-tensorflow[horovod] #60

Open GitZinger opened 2 years ago

GitZinger commented 2 years ago

Please make sure that this is a build/installation issue. As per our GitHub Policy, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:build_template

System information

Describe the problem

no matches found: nvidia-tensorflow[horovod]

Provide the exact sequence of commands / steps that you executed before running into the problem already had

$pip install --upgrade pip
$pip install nvidia-pyindex 
$pip --version
pip 22.0.4

simply running pip install nvidia-tensorflow[horovod]

is there a conda forge to install this?

Any other info / logs Include any logs or source code that would be helpful to diagnose the problem. If including tracebacks, please include the full traceback. Large logs and files should be attached.

RhodaLiu17 commented 2 years ago

I use zsh and I have the same problem as yours. I solve it by using

pip install --user "nvidia-tensorflow[horovod]"

I quote "nvidia-tensorflow[horovod]" and it works, hope this can help you!

mcimpoi commented 9 months ago

Thanks for sharing the answer and mentioning zsh. I am also using zsh, and encountered the same problem, i.e. installing tensorflow[with-cuda], following instructions from https://www.tensorflow.org/install/pip

Putting the package name in quotes fixed the zsh: no matches found: tensorflow[and-cuda] error.

tzelalouzeir commented 4 months ago

Thanks for sharing the answer and mentioning zsh. I am also using zsh, and encountered the same problem, i.e. installing tensorflow[with-cuda], following instructions from https://www.tensorflow.org/install/pip

Putting the package name in quotes fixed the zsh: no matches found: tensorflow[and-cuda] error.

When i tried to download pip install tensorflow[and-cuda] give me zsh not found problem but

I tried pip3 install --user "tensorflow[and-cuda]" and its working

bhaskar9221 commented 3 weeks ago

@tzelalouzeir thank you soo much ! it worked for me !!