Installing on windows installs torch-1.5.1+cpu?
See original GitHub issueHello,
I am running the following command in my conda terminal pip install hummingbird-ml -f https://download.pytorch.org/whl/torch_stable.html
the result is that it installs torch-1.5.1+cpu therefore I am not able to use cuda when converting my model. If I manually install pytorch then hummingbird wont work since its missing torch-1.5.1+cpu but at least print(torch.cuda.is_available())
will return true.
How do I fix this?
Issue Analytics
- State:
- Created 3 years ago
- Comments:5
Top Results From Across the Web
Installing PyTorch 1.5 for CPU on Windows 10 with Anaconda ...
Locate the installer file for Windows, 64-bit, Anaconda version 2020.02 — be careful, it's very easy to get the wrong file. It's Anaconda3- ......
Read more >How to install PyTorch 1.5 (conda & pip) - VarHowto
1. It is highly recommended that you have CUDA installed. Note that PyTorch 1.5.0/1.5.1 does not support CUDA 11.0. If you have n't...
Read more >Can't install pytorch with pip on Windows - Stack Overflow
torch 1.5.0 installs fine with python 3.8.3 in Ubuntu, but not in Windows 10. Even with python 3.7 torch 1.5.0 does not install...
Read more >Previous PyTorch Versions
Installing previous versions of PyTorch ... Linux and Windows. # CUDA 10.2 conda install pytorch==1.12.1 torchvision==0.13.1 torchaudio==0.12.1 ...
Read more >Getting Started with PyTorch 1.5 on Windows
Installing PyTorch involves two steps. First you install Python and several required auxiliary packages such as NumPy and SciPy, then you ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@interesaaat Alright I found the solution. Build hummingbird-ml from the github repo by cloning it and then running
python setup.py install
Thanks for reporting what worked! Making the installer work across all platforms and possible configurations has been a challenge, thanks for bearing with us!