问题
My Error is
__main__.gdal_config_error: [Errno 2] No such file or directory
I get this while trying to install GDAL using pip and easy_install with Python2.7 on Ubuntu 12.10.
回答1:
try this:
sudo apt-get install python-gdal
回答2:
Try this:
sudo add-apt-repository ppa:ubuntugis/ppa
sudo apt-get update
sudo apt-get install gdal
Source
来源:https://stackoverflow.com/questions/15004590/error-while-trying-to-install-gdal-using-pip-and-easy-install-with-python2-7-on