install_dgl_asv.sh 163 Bytes
Newer Older
1
2
3
4
#!/bin/bash

set -e

5
# . /opt/conda/etc/profile.d/conda.sh
6

7
8
9
10
11
12
# install
pushd python
rm -rf build *.egg-info dist
pip uninstall -y dgl
python3 setup.py install
popd