{ "info": { "author": "GeoNode Developers", "author_email": "dev@geonode.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta" ], "description": ".. image:: https://secure.travis-ci.org/GeoNode/geonode.png\n :alt: Build Status\n :target: http://travis-ci.org/GeoNode/geonode\n\n\nGeoNode Support\n===============\n\nTo get support, give feedbacks and suggestions please use the GeoNode official channels, the users mailing list: http://lists.osgeo.org/pipermail/geonode-users/ and the developers mailing list: http://lists.osgeo.org/pipermail/geonode-devel/.\n\nThis repository is used to track code changes and GeoNode issues, please DON'T open new issues to ask for support.\n\n\nGeoNode Installation\n====================\n\nIf you just want to try GeoNode, it is recommended to use Ubuntu 12.04 and install the python software properties.::\n\n sudo apt-get install python-software-properties\n\nFor 12.04 with python software properties installed, install the latest stable release of GeoNode.::\n\n sudo add-apt-repository ppa:geonode/release\n sudo apt-get update\n sudo apt-get install geonode\n\nIf instead, you are interested in doing development on the source code, here are the instructions: http://docs.geonode.org/en/master/tutorials/devel/install_devmode/index.html#install-devmode.\n\nDocker Usage\nIf you want to use Docker you can now:\n\n # build the docker container\n docker build -t geonode .\n\n # run the docker container\n docker run -d -p 8111:8000 geonode\n\nOr if you use fig:\n\n # build the container\n fig build\n\n # run the container\n fig up\n\nopenSUSE Development Build Instructions::\n\n # Add Application:Geo and Python repositories\n zypper -ar http://download.opensuse.org/repositories/Application:/Geo/openSUSE_12.2/ GEO\n zypper -ar http://download.opensuse.org/repositories/devel:/languages:/python/openSUSE_12.1/ python\n zypper refresh\n\n # Basic build packages\n zypper install gcc gcc-c++ python-devel libgeos-devel libproj-devel\n\n # Python native dependencies\n zypper install python-pip python-virtualenv python-imaging python-lxml python-gdal\n\n # Java dependencies\n zypper install java-1_7_0_openjdk-devel ant maven\n\n # Supporting tools\n zypper install git gettext-runtime\n\n # Create virtualenv and activate it\n virtualenv venv --system-site-packages\n source venv/bin/activate\n cd venv\n\n # Clone GeoNode\n git clone https://github.com/GeoNode/geonode.git\n\n # Install GeoNode in the local virtualenv\n pip install -e geonode --use-mirrors\n\n cd geonode\n\n # Compile GeoServer\n paver setup\n \n # Start the servers\n paver start\n\nWindows Development Build Instructions::\n\n\n Prerequisites:\n # Java JDK\n # Python 2.7\n # ant (bin directory must be on system PATH)\n # maven2 (bin directory must be on system PATH)\n # Python distutils (easy_install)\n # GDAL Core Libraries\n # git\n\n # Install and configure from the windows command prompt\n If you don't already have python virtualenv installed, then do it now:\n easy_install virtualenv\n\n # Create virtualenv and activate it\n cd \n virtualenv venv\n venv\\scripts\\activate\n\n # Clone GeoNode\n git clone https://github.com/GeoNode/geonode.git\n \n # Install compiled packages for Python 2.7 Win32\n cd geonode\n pip install paver\n paver win_install_deps\n \n # Install GeoNode in the local virtualenv\n pip install -e . --use-mirrors\n \n # Compile GeoServer\n paver setup\n \n # Start the servers\n paver start --java_path=C:/path/to/java/bin/java.exe\n\nMac OSX Development Build Instructions::\n \n # you may need brew install various dependencies \n\n mkdir -p ~/pyenv\n virtualenv ~/pyenv/geonode \n source ~/pyenv/geonode/bin/activate\n git clone https://github.com/GeoNode/geonode\n cd geonode\n pip install lxml\n pip install pyproj\n pip install nose\n pip install httplib2\n pip install shapely\n pip install pillow\n pip install paver\n\n # Node and tools required for static development\n brew install node\n npm install -g bower\n npm install -g grunt-cli\n\n #Install pip dependencies\n pip install -e .\n\n #Paver handles dependencies for Geonode, first setup (this will download and update your python dependencies - ensure you're in a virtualenv)\n paver setup\n paver start\n \n # Optional: To generate document thumbnails for PDFs and other ghostscripts file types\n # Then download ghostscript: https://www.macupdate.com/app/mac/9980/gpl-ghostscript\n brew install imagemagick\n pip install Wand==0.3.5\n\nOnce fully started, you should see a message indicating the address of your geonode.\nThe default username and password are ``admin`` and ``admin``::\n \n Development Geonode is running at http://localhost:8000/\n To stop the GeoNode machine run:\n paver stop\n\n Or quit the server by pressing\n CTRL-C to shut down\n\nBefore starting GeoNode (paver start), you could test your installation by running tests::\n\n paver test\n paver test_integration\n \nIn case you want to build yourself the documentation, you need to install Sphinx and the run 'make html' from within the docs directory::\n\n pip install Sphinx\n pip install sphinx_rtd_theme\n cd docs\n make html\n \nYou can eventually generate a pdf containing the whole documentation set. For this purpose, if using Ubuntu you will need to install the texlive-full package::\n\n sudo apt-get install texlive-full\n make latexpdf\n\n.. note:: \n\n When running ``virtualenv venv`` the ``--system-site-packages`` option is\n not required. If not enabled, the bootstrap script will sandbox your virtual\n environment from any packages that are installed in the system, useful if\n you have incompatible versions of libraries such as Django installed\n system-wide. On the other hand, most of the times it is useful to use a version of\n the Python Imaging Library provided by your operating system\n vendor, or packaged other than on PyPI. When in doubt, however, just leave\n this option out.\n\nDevelopment Roadmap\n===================\n\nGeonode's development roadmap is documented in a series of Geonode Improvement Projects (GNIPS). \nThey are documented here: https://github.com/GeoNode/geonode/wiki/GeoNode-Improvement-Proposals.\nGNIPS are considered to be large undertakings which will add a large amount of features to the project. \nAs such they are the topic of community dicussion and guidance.\nThe community discusses these on the developer mailing list: http://lists.osgeo.org/pipermail/geonode-devel/\nGithub issues tracks features and bugs, for new developers the tag 'easy-pick' indicates an \nissue that should be relatively easy for new developers to understand and complete. Once you have completed an issue\na pull request should be submitted. This will then be reviewed by the community.\n\nGPL License\n===========\n\nGeoNode is Copyright 2010 OpenPlans.\n\nGeoNode is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nGeoNode is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with GeoNode. If not, see .", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://geonode.org", "keywords": "", "license": "GPL", "maintainer": null, "maintainer_email": null, "name": "GeoNode_clone", "package_url": "https://pypi.org/project/GeoNode_clone/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/GeoNode_clone/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://geonode.org" }, "release_url": "https://pypi.org/project/GeoNode_clone/2.4.dev20150605191720/", "requires_dist": null, "requires_python": null, "summary": "Application for serving and sharing geospatial data", "version": "2.4.dev20150605191720" }, "last_serial": 1584228, "releases": { "2.4.dev20150605191720": [] }, "urls": [] }