This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| Hello, world! This has been revised... |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 2016-11-28 09:15:35 -0500 | |
| /usr/local/Cellar/mapbox/0.5.1/libexec/bin/pip | |
| install | |
| -v | |
| --no-deps | |
| --no-binary | |
| :all: | |
| --ignore-installed | |
| /private/tmp/mapbox--polyline-20161128-37707-19tydax/polyline-1.3.1 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Had an issue after upgrading QGIS. For some reason it was picking up an older version of numpy and throwing the error:
RuntimeError: module compiled against API version 0xa but this version of numpy is 0x9
Turns out the system python had an old version of numpy installed. To figure this out:
$ /usr/bin/python
Python 2.7.10 (default, Feb 7 2017, 00:08:15)
[GCC 4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.34)] on darwin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Standalone python script for QGIS3 on OSX. | |
| """ | |
| import os | |
| import sys | |
| # Define plugin locations from QGIS3 | |
| sys.path.append('/Applications/QGIS3.app/Contents/Resources/python/') | |
| sys.path.append('/Applications/QGIS3.app/Contents/Resources/python/plugins') | |
| # Define Qt5 plugin path since Qt5 can't find it |
OlderNewer