mirror of
https://github.com/dmlc/dgl.git
synced 2026-06-04 19:44:23 +08:00
* change ci * update ci * update ci * update ci * update ci * update ci * update ci * update ci * update ci * update ci * update ci * update ci * update ci * update ci * update ci * update ci * nx package * update ci * update ci * update ci * fix * mx dockerfile by zhengda * python3.6->3.5 * update ci image * add tutorial test * fix ci * fix ssl problem * minor change * small fix on traversal utest * fix syntax * add matplotlib in image * fix * update ci * update ci
15 lines
323 B
Bash
15 lines
323 B
Bash
# install python and pip, don't modify this, modify install_python_package.sh
|
|
apt-get update
|
|
apt-get install -y python-dev python3-dev
|
|
|
|
# install pip
|
|
cd /tmp && wget https://bootstrap.pypa.io/get-pip.py
|
|
python2 get-pip.py
|
|
python3 get-pip.py
|
|
|
|
# santiy check
|
|
python2 --version
|
|
python3 --version
|
|
pip2 --version
|
|
pip3 --version
|