如何在Google Colab上快速安装GDAL?
问题描述
我可以通过运行cell:
在Google Colab中安装GDAL%%shell
sudo yum -y update
sudo yum-config-manager --enable epel
sudo yum -y install make automake gcc gcc-c++ libcurl-devel proj-devel geos-devel
cd /tmp
curl -L http://download.osgeo.org/gdal/2.0.0/gdal-2.0.0.tar.gz | tar zxf -
cd gdal-2.0.0/
./configure --prefix=/usr/local --without-python
make -j4
sudo make install
cd /usr/local
tar zcvf ~/gdal-2.0.0-amz1.tar.gz *
使用this答案。
但是,此单元格需要超过半个小时才能完成。
如何才能更快地安装gdal
?
我的目标是在this answer中运行代码。我已经设法做到了,但是在Colab内核重新启动之后,我必须再次等待上面的单元运行。
解决方案
使用install conda package to google colab,这是可行的:
%%shell
wget -c https://repo.anaconda.com/miniconda/Miniconda3-4.5.4-Linux-x86_64.sh
chmod +x Miniconda3-4.5.4-Linux-x86_64.sh
bash ./Miniconda3-4.5.4-Linux-x86_64.sh -b -f -p /usr/local
conda install -q -y --prefix /usr/local python=3.6 gdal
相关文章