install_dgl_asv.sh 219 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

set -e

. /opt/conda/etc/profile.d/conda.sh

pip install -r /asv/torch_gpu_pip.txt
pip install pandas

# install
pushd python
rm -rf build *.egg-info dist
pip uninstall -y dgl
python3 setup.py install
popd