torchvision CPU nightly wheels are stored in the wrong index
See original GitHub issueThe nightlies are in https://download.pytorch.org/whl/nightly/cpu/torchvision/torchvision rather than https://download.pytorch.org/whl/nightly/cpu/torchvision/.
Installing with
pip install --pre torchvision --extra-index-url https://download.pytorch.org/whl/nightly/cpu/
will pull the stable wheel from PyPI.
Issue Analytics
- State:
- Created a year ago
- Reactions:2
- Comments:16 (6 by maintainers)
Top Results From Across the Web
Stable Diffusion (Couldn't Install Torch & Pip Version)
I get "ERROR: torch has an invalid wheel, .dist-info directory not found"; python -m pip install --upgrade pip. It's probably worth noting that ......
Read more >BERT PyTorch TPU - Kaggle
Operation completed over 1 objects/119.5 MiB. Copying gs://tpu-pytorch/wheels/torchvision-nightly+20200515-cp37-cp37m-linux_x86_64.whl... Operation completed ...
Read more >torchvision - PyPI
The torchvision package consists of popular datasets, model architectures, and common image transformations for computer vision.
Read more >Installing and running pytorch on M1 GPUs (Apple metal/MPS)
The error at the bottom has to do with versioning and installing dependencies for torchvision. You may need to handle dependency installations manually....
Read more >Issue with pip installation of PyTorch
pip3 install torch torchvision torchaudio --extra-index-url ... available-returns-false-even-after-installing-pytorch-with/61034368#61034368.
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
This issue is still popping up from time to time. We tried working around it using @pmeier’s suggestion to change:
to:
However, this results in installing a ROCM enabled version of torch that fails at runtime and is incompatible with some of our other dependencies.
Thanks for the workaround @pmeier.
@malfet, thanks for looking into this, though I am still unable to use
--extra-index-url
at this time.