如何在PyCharm终端查看cudatoolkit版本
时间: 2024-03-07 14:26:05 浏览: 194
pytorch 查看cuda 版本方式
在PyCharm终端中,可以使用以下命令查看cudatoolkit的版本:
```python
!nvcc --version
```
这会输出类似于以下内容的信息:
```
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2020 NVIDIA Corporation
Built on Mon_Oct_12_20:09:46_PDT_2020
Cuda compilation tools, release 11.1, V11.1.105
Build cuda_11.1.TC455_06.29190527_0
```
其中,`Cuda compilation tools, release 11.1` 表示当前的cudatoolkit版本为11.1。
阅读全文