mac安装cuda的清华镜像源
时间: 2024-01-26 13:14:18 浏览: 80
在Mac上安装CUDA的清华镜像源,可以按照以下步骤进行操作:
1. 首先,打开终端。
2. 使用以下命令编辑.bash_profile文件:
```shell
nano ~/.bash_profile
```
3. 在打开的文件中,添加以下两行代码:
```shell
export CUDA_HOME=/usr/local/cuda
export PATH=$CUDA_HOME/bin:$PATH
```
4. 按下Ctrl + X,然后按Y键保存文件并退出。
5. 使用以下命令使更改生效:
```shell
source ~/.bash_profile
```
6. 接下来,使用以下命令安装CUDA:
```shell
brew install --cask cuda
```
7. 安装完成后,使用以下命令验证CUDA是否成功安装:
```shell
nvcc --version
```
你应该能够看到CUDA的版本信息。
相关问题
清华镜像源安装cuda12.1
您可以按照以下步骤在清华镜像源上安装CUDA 12.1:
1. 添加清华镜像源到apt源列表中:
```
sudo echo "deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse" >> /etc/apt/sources.list
sudo echo "deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse" >> /etc/apt/sources.list
sudo echo "deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse" >> /etc/apt/sources.list
sudo echo "deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-security main restricted universe multiverse" >> /etc/apt/sources.list
```
2. 添加清华镜像源的GPG key:
```
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3B4FE6ACC0B21F32
```
3. 更新apt源列表:
```
sudo apt-get update
```
4. 安装CUDA 12.1:
```
sudo apt-get install cuda-12-1
```
5. 验证CUDA是否安装成功:
```
nvcc -V
```
cuda10.1安装pytorch的清华镜像源
以下是在清华镜像源上安装cuda10.1和pytorch的步骤:
1.添加清华镜像源到conda配置文件中。在终端中输入以下命令:
```shell
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
```
2.创建一个新的conda环境并激活它。在终端中输入以下命令:
```shell
conda create --name pytorch_env
conda activate pytorch_env
```
3.安装cuda10.1。在终端中输入以下命令:
```shell
conda install cudatoolkit=10.1
```
4.安装pytorch。在终端中输入以下命令:
```shell
conda install pytorch torchvision torchaudio -c pytorch
```
注意:如果你已经安装了cuda10.1,可以跳过第三步。
阅读全文