Last active
April 15, 2018 15:40
-
-
Save t-book/ccc2f8d6e2c3b735e76c9b779152ee39 to your computer and use it in GitHub Desktop.
alternative pip install for geonode 2.8
This file contains 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
$ cd my_geonode | |
# install pip requirements line by line and exclude pygdal | |
$ cat requirements.txt | grep -v "pygdal" | xargs -n 1 pip install | |
# install geonode project | |
$ pip install -e git://github.com/GeoNode/[email protected]#egg=geonode | |
$ pip install -e . | |
# install the correct pygdal version | |
$ gdal-config --version | cut -c 1-5 | xargs -I % pip install 'pygdal>=%.0,<=%.999' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment