alibaba / graph-learn

An Industrial Graph Neural Network Framework
Apache License 2.0
1.28k stars 267 forks source link

GL编译问题 #198

Closed UVUUUVUU closed 2 years ago

UVUUUVUU commented 2 years ago

请问项目结构在前几天的修改后第三方依赖文件夹下已经没有了protobuf库,会导致编译错误,这个是要怎么解决呢?

baoleai commented 2 years ago

Actually, grpc module contains protobuf module,so on master branch when you compile the grpc library it will automatically compile protobuf. Please make sure that all third party libraries are downloaded in full. You can run git submodule update --recursive to download the whole submodules. cc @goldenleaves

baoleai commented 2 years ago

The new build command is as follows,

cd graphlearn/
./install_dependencies.sh
sudo apt install python3 python3-pip
mkdir build
cd build
cmake ..
make -j
make python -j
UVUUUVUU commented 2 years ago

ok, i got it, thanks a lot.