# pyg **Repository Path**: alea_admin/pyg ## Basic Information - **Project Name**: pyg - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-01-12 - **Last Updated**: 2026-01-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 1. 查看Cuda版本 nvcc --version # 2. 创建Conda环境 unset http_proxy && unset https_proxy && unset HTTP_PROXY && unset HTTPS_PROXY && unset ALL_PROXY && unset all_proxy conda create --name pyg python=3.10 -y conda activate pyg conda remove -n pyg --all -y # 3. 直接安装(如果下载了 .whl 文件) 网址:https://data.pyg.org/whl/torch-2.4.1%2Bcu121.html pip install pyg_lib-0.4.0+pt24cu121-cp310-cp310-linux_x86_64 # 4. 通过 PyG 官方安装(推荐) pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121 # 5. 完整安装 PyTorch Geometric pip install torch_geometric pip install scipy pip install matplotlib pip install scikit-learn pip install tensorboard pip install pandas tensorboard --logdir=runs --host=0.0.0.0 --port=9000