Code Monkey home page Code Monkey logo

Comments (2)

andyoso avatar andyoso commented on August 12, 2024

Same problem, I have no idea how to deal with it.

from ecoute.

adirasgithub avatar adirasgithub commented on August 12, 2024

Problem is

  1. Now Torch, Cuda, Python are not compatible with each other, you would need to reinstall everything with compatibility check
  2. whl wheel also has unsupported versions
    The CUDA version compatibility depends on the specific version of PyTorch you're installing.
    --extra-index-url https://download.pytorch.org/whl/cu117

This line suggests that you're trying to install a PyTorch version compatible with CUDA 11.7. However, as of now, PyTorch officially supports up to CUDA 11.3.
If you're using CUDA 11.7, you might need to downgrade your CUDA version to 11.3 or wait until PyTorch releases a version compatible with CUDA 11.7.

Once you do it, do
pip uninstall torch torchvision torchaudio
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu117 // 117 or 113, still unsure

Check python version
python --version

Check the CUDA version:
nvcc --version (If CUDA Toolkit is installed)
OR
nvidia-smi (To check driver's CUDA capability):

Check Torch and Cuda compatibility
python
import torch
print(torch.version.cuda)
OR
you can also use
import torch
print(torch.__version__)
print(torch.cuda.is_available()) # Optional: Check for CUDA support
Error Output: If you get an ImportError: No module named 'torch', then PyTorch is not installed.
Output : True , everything is working fine
Output : False , Retry, you are in trouble

from ecoute.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.