Linux常用命令(持续更新)
程序员文章站
2022-06-03 10:05:15
...
Basic
- 查看cuda版本1:
$ nvcc --version
- 查看cuda版本2:
$ cat /usr/local/cuda/version.txt
- 查看cuda版本3:
$ python -c "import torch; print(torch.version.cuda)"
- 查看cudnn版本:
$ cat /usr/local/cuda/include/cudnn.h | grep CUDNN_MAJOR -A 2
Conda
- 升级conda:
$ conda update conda
- 创建环境:
$ conda create --name test pip
- 列出所有环境:
$ conda info --envs
- 查看当前环境:
$ conda info -envis
- **/取消**环境:
$ conda activate test / conda deactivate
- 复制环境:
$ conda create -n test2 --clone test
- 删除环境:
$ conda remove -n test --all
- 设置源:
$ conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ $ conda config --set show_channel_urls yes
- 安装python包:
$ conda install test
- pip安装:
$ pip install test -i https://pypi.tuna.tsinghua.edu.cn/simple