您的位置:首页 > 健康 > 美食 > 设计网站公司地址_百度快速收录接口_怎么样建网站_品牌策划方案

设计网站公司地址_百度快速收录接口_怎么样建网站_品牌策划方案

2024/12/23 2:13:00 来源:https://blog.csdn.net/weixin_44253237/article/details/143315347  浏览:    关键词:设计网站公司地址_百度快速收录接口_怎么样建网站_品牌策划方案
设计网站公司地址_百度快速收录接口_怎么样建网站_品牌策划方案

文章目录

  • 前言
  • 一、安装 PyTorch(CUDA 12.2)
    • 1. 创建并激活 Conda 环境
    • 2. 安装 PyTorch(CUDA 12.2)
    • 3. 安装 torch_geometric 及依赖项
    • 4. 验证安装
  • 总结


前言


一、安装 PyTorch(CUDA 12.2)

1. 创建并激活 Conda 环境

如果还没有创建环境,可以先创建:

conda create -n my_geometric_env python=3.8 -y
conda activate my_geometric_env

2. 安装 PyTorch(CUDA 12.2)

目前,PyTorch 官方还没有发布对 CUDA 12.2 的支持,因此你可以使用 CPU 版本的
PyTorch,或者如果你的硬件兼容,可以考虑降级到 CUDA 11.8 并安装与之兼容的 PyTorch 版本。

pip install torch torchvision torchaudio -i https://mirrors.aliyun.com/pypi/simple/

设置 Aliyun 镜像 为了让 pip 从 Aliyun 源安装库,在安装命令中指定 -i https://mirrors.aliyun.com/pypi/simple/。 安装 torch_geometric 及依赖项

3. 安装 torch_geometric 及依赖项

使用 torch_geometric 官方提供的临时源命令,结合 Aliyun 镜像:

Unix/Linux Shell:

pip install torch-scatter -i https://mirrors.aliyun.com/pypi/simple/ -f https://data.pyg.org/whl/torch-$(python -c "import torch; print(torch.__version__.split('+')[0])").html
pip install torch-sparse -i https://mirrors.aliyun.com/pypi/simple/ -f https://data.pyg.org/whl/torch-$(python -c "import torch; print(torch.__version__.split('+')[0])").html
pip install torch-cluster -i https://mirrors.aliyun.com/pypi/simple/ -f https://data.pyg.org/whl/torch-$(python -c "import torch; print(torch.__version__.split('+')[0])").html
pip install torch-spline-conv -i https://mirrors.aliyun.com/pypi/simple/ -f https://data.pyg.org/whl/torch-$(python -c "import torch; print(torch.__version__.split('+')[0])").htmlpip install torch-geometric -i https://mirrors.aliyun.com/pypi/simple/

Windows:

pip install torch-scatter -i https://mirrors.aliyun.com/pypi/simple/ -f https://data.pyg.org/whl/torch-1.13.1+cu118.html
pip install torch-sparse -i https://mirrors.aliyun.com/pypi/simple/ -f https://data.pyg.org/whl/torch-1.13.1+cu118.html
pip install torch-cluster -i https://mirrors.aliyun.com/pypi/simple/ -f https://data.pyg.org/whl/torch-1.13.1+cu118.html
pip install torch-spline-conv -i https://mirrors.aliyun.com/pypi/simple/ -f https://data.pyg.org/whl/torch-1.13.1+cu118.htmlpip install torch-geometric -i https://mirrors.aliyun.com/pypi/simple/

4. 验证安装

python -c "import torch_geometric; print(torch_geometric.__version__)"

总结

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com