环境配置和代码总结记录
torch + torch_geometric 安装
torch 1.13.1 + cuda 11.7
低于服务器安装的cuda版本即可,nvidia-smi查看
1 | pip3 install torch==1.13.1+cu117 torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu117 |
验证:
1 | import torch |
torch_geometric
https://pytorch-geometric.readthedocs.io/en/latest/install/installation.html
1 | pip install torch_geometric |
复制已有的conda环境
查看已有的环境
1 | conda info --env |
根据已有环境的路径复制
1 | conda create -n [name] --clone [path] |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Ruiqing's Blog!