Installing Graph Learning
Installation
System Environment Information Confirmation
Ensure that the hardware platform is Ascend or GPU under the Linux system.
Refer to MindSpore Installation Guide to complete the installation of MindSpore, which requires at least version 2.0.0.
For other dependencies, please refer to requirements.txt.
Installation Methods
You can install MindSpore Graph Learning either by pip or by source code.
Installation by pip
Ascend/CPU
pip install https://ms-release.obs.cn-north-4.myhuaweicloud.com/2.0.0rc1/GraphLearning/cpu/{system_structure}/mindspore_gl-0.2-cp37-cp37m-linux_{system_structure}.whl --trusted-host ms-release.obs.cn-north-4.myhuaweicloud.com -i https://pypi.tuna.tsinghua.edu.cn/simple
GPU
pip install https://ms-release.obs.cn-north-4.myhuaweicloud.com/2.0.0rc1/GraphLearning/gpu/x86_64/cuda-{cuda_verison}/mindspore_gl-0.2-cp37-cp37m-linux_x86_64.whl --trusted-host ms-release.obs.cn-north-4.myhuaweicloud.com -i https://pypi.tuna.tsinghua.edu.cn/simple
When the network is connected, dependency items are automatically downloaded during .whl package installation. For details about other dependency items, see requirements.txt. In other cases, you need to manually install dependency items.
{system_structure}
denotes the Linux system architecture, and the option isx86_64
andarrch64
.
{cuda_verison}
denotes the CUDA version, and the option is10.1
,11.1
and11.6
。
Installation by Source Code
Download source code from Gitee.
git clone https://gitee.com/mindspore/graphlearning.git
Compile and install in MindSpore Graph Learning directory.
cd graphlearning bash build.sh pip install ./output/mindspore_gl-*.whl
Installation Verification
Successfully installed, if there is no error message such as No module named 'mindspore_gl'
when execute the following command:
python -c 'import mindspore_gl'