项目文件夹

文件
Minjie Wang c64405b1f6 [Docker] update docker image (#575)
* update docker image

* specify lint version

* rm torch import from unified tests
2019-05-27 17:04:46 -04:00

9 行
155 B
Bash

# install cmake 3.9
wget https://cmake.org/files/v3.9/cmake-3.9.0.tar.gz
tar xvf cmake-3.9.0.tar.gz
cd cmake-3.9.0
./configure
make -j4
make install
cd ..