CUDA在笔记本中可用,但在VS Code终端中不可用 – 使用相同的conda环境。

huangapple go评论76阅读模式
英文:

CUDA available in notebook but not in VS code terminal - same conda environment

问题

在conda环境中安装了torch。在命令行中运行python并尝试检查CUDA可用性时,结果显示False。

然而,在使用Jupyter Notebook时,它显示CUDA可用。我正在使用相同的环境。GPU位于相同的本地Windows机器上。

import torch
torch.cuda.is_available()
> True
!which python
> /c/Users/b2bt/anaconda3/envs/stable-diffusion/python

我尝试创建一个新的conda环境来运行stable diffusion web界面。之前我在不同的环境中安装了torch并成功使用了GPU。我原本期望终端会显示CUDA可用,但奇怪的是它没有。

英文:

I have torch installed in a conda environment. When I run python in command line and try to check CUDA availability I get False as show below.

>>> import torch
>>> torch.cuda.is_available()
False

However, when I use jupyter notebook, it shows CUDA is available. I'm using the same environment. The GPU is on the same local Windows machine

import torch
torch.cuda.is_available()
> True
!which python
> /c/Users/b2bt/anaconda3/envs/stable-diffusion/python

I tried creating a new conda environment to run the stable diffusion web UI. I've installed torch previously in a different environment and have used it successfully with GPU. I was expecting the terminal to show CUDA available but strangely it doesn't.

答案1

得分: 2

这个问题可能是使用 pip install pytorch 安装包引起的。

解决方法:

打开官方网站,并搜索适合你环境的正确版本。

CUDA在笔记本中可用,但在VS Code终端中不可用 – 使用相同的conda环境。

pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu117
英文:

This problem may be caused by using pip install pytorch to install package.

Solution:

Open the official website, and search for the correct version for your environment.

CUDA在笔记本中可用,但在VS Code终端中不可用 – 使用相同的conda环境。

pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu117

答案2

得分: 2

我遇到了和你一样的问题。我意识到没有安装pytorch。

所以,使用上面提到的pip3命令进行安装:

pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu117

英文:

I had the same issue as you have. I realized pytorch was not installed.

So, installed in using pip3 command stated above:

pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu117

huangapple
  • 本文由 发表于 2023年5月13日 21:37:21
  • 转载请务必保留本文链接:https://go.coder-hub.com/76243011.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定