We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FYI, installing on MacOS throws an error at
elif osused == 'Darwin': print('Trying to install gdal...') try: check_call(['brew', 'install', 'gdal'], stdout=open(os.devnull, 'wb'), stderr=STDOUT)
and also
out = subprocess.getstatusoutput(['cmake', '--version']) if out[0] != 0: if osused == 'Darwin': print('Trying to install cmake...') try: check_call(['brew', 'install', 'cmake'], stdout=open(os.devnull, 'wb'), stderr=STDOUT) except: raise Exception('Impossible to install cmake through homebrew. Please install manually cmake before running ' 'this script.\nInstallation aborted.')
However, running the actual command from command line:
brew install gdal brew install cmake
performs fine. Would help debugging, but I don't myself have a Mac.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
FYI, installing on MacOS throws an error at
and also
However, running the actual command from command line:
performs fine. Would help debugging, but I don't myself have a Mac.
The text was updated successfully, but these errors were encountered: