项目文件夹

文件
Minjie Wang 2ade0ef96d [Hotfix] fix cython bug (#442)
* fix cython bug

* fix

* fix
2019-03-08 17:07:17 -05:00

23 行
299 B
Bash

#!/bin/bash
if [ -d build ]; then
rm -rf build
fi
mkdir build
rm -rf _download
pushd build
cmake ..
make -j4
popd
pushd python
rm -rf build *.egg-info dist
pip3 uninstall -y dgl
# test install
python3 setup.py install
# test inplace build (for cython)
python3 setup.py build_ext --inplace
popd