现在的位置: 首页 > 综合 > 正文

环境: Ubuntu12.04 安装 GDAL

2018年04月08日 ⁄ 综合 ⁄ 共 770字 ⁄ 字号 评论关闭
# Install subversion
sudo apt-get -y install subversion
# Install g++
sudo apt-get -y install g++
# Install Hierarchical Data Format library
# NOTE: This library is not necessarily needed, but was required
# in order for this to compile against a clean Ubuntu 12.04 LTS system.
# I didn't need it on a clean EC2 Ubuntu 12.10 instance, so
# I'm commenting it out here. Uncomment if you run into dependency troubles.
# sudo apt-get -y install libhdf4-alt-dev
# Get trunk of gdal
svn checkout https://svn.osgeo.org/gdal/trunk/gdal gdal
# Configure and make
cd gdal
./configure
sudo make install
# Modify .bashrc to export environment variable necessary for gdal to find library files
echo " " >> $HOME/.bashrc
echo "# GDAL environment variables" >> $HOME/.bashrc
echo "export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH" >> $HOME/.bashrc
 
source $HOME/.bashrc https://gist.github.com/lossyrob/4348503

抱歉!评论已关闭.