pygdal


Namepygdal JSON
Version 3.7.2.12 PyPI version JSON
download
home_pagehttps://github.com/nextgis/pygdal
SummaryVirtualenv and setuptools friendly version of standard GDAL python bindings
upload_time2023-10-13 21:00:22
maintainerAleksandr Dezhin
docs_urlNone
authorFrank Warmerdam
requires_python>=3.6
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            # Virtualenv friendly GDAL bindings for Python

This package is for you if you had problems installing GDAL in your virtualenv.
You can install GDAL into your virtualenv using this package but you still need
to install GDAL library and its header files on your system. On Ubuntu it can be
done this way:

```bash
$ sudo apt-get install libgdal1-dev
```

Version of the same package, and GDAL, so that if you have installed GDAL 3.6.4
you need to install 3.6.4.\* of this package:

```bash
$ gdal-config --version
3.6.4
$ virtualenv --no-site-packages env
$ env/bin/pip install pygdal=="3.6.4.*"
```

The trick with range of versions required to support pygdal versioning.

Package `numpy` is also listed as a dependency, so you do not need to install it
before installing GDAL. After package is installed you can use is same way as
standard GDAL bindings:

```python
from osgeo import gdal, ogr, osr

# ...
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/nextgis/pygdal",
    "name": "pygdal",
    "maintainer": "Aleksandr Dezhin",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "me@dezhin.net",
    "keywords": "",
    "author": "Frank Warmerdam",
    "author_email": "warmerdam@pobox.com",
    "download_url": "https://files.pythonhosted.org/packages/b5/e1/62e2d9160f9f178a22c67f5918711a0a8d6e5b4baed2036b47ad69e689b3/pygdal-3.7.2.12.tar.gz",
    "platform": null,
    "description": "# Virtualenv friendly GDAL bindings for Python\n\nThis package is for you if you had problems installing GDAL in your virtualenv.\nYou can install GDAL into your virtualenv using this package but you still need\nto install GDAL library and its header files on your system. On Ubuntu it can be\ndone this way:\n\n```bash\n$ sudo apt-get install libgdal1-dev\n```\n\nVersion of the same package, and GDAL, so that if you have installed GDAL 3.6.4\nyou need to install 3.6.4.\\* of this package:\n\n```bash\n$ gdal-config --version\n3.6.4\n$ virtualenv --no-site-packages env\n$ env/bin/pip install pygdal==\"3.6.4.*\"\n```\n\nThe trick with range of versions required to support pygdal versioning.\n\nPackage `numpy` is also listed as a dependency, so you do not need to install it\nbefore installing GDAL. After package is installed you can use is same way as\nstandard GDAL bindings:\n\n```python\nfrom osgeo import gdal, ogr, osr\n\n# ...\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Virtualenv and setuptools friendly version of standard GDAL python bindings",
    "version": "3.7.2.12",
    "project_urls": {
        "Homepage": "https://github.com/nextgis/pygdal"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b5e162e2d9160f9f178a22c67f5918711a0a8d6e5b4baed2036b47ad69e689b3",
                "md5": "44b5526471343051a01a42fed00463ec",
                "sha256": "097d8340fc670422d3a6753ed845d3a4b2f41efa6ba0aa089ae4cd0b96cf1855"
            },
            "downloads": -1,
            "filename": "pygdal-3.7.2.12.tar.gz",
            "has_sig": false,
            "md5_digest": "44b5526471343051a01a42fed00463ec",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 5409,
            "upload_time": "2023-10-13T21:00:22",
            "upload_time_iso_8601": "2023-10-13T21:00:22.071644Z",
            "url": "https://files.pythonhosted.org/packages/b5/e1/62e2d9160f9f178a22c67f5918711a0a8d6e5b4baed2036b47ad69e689b3/pygdal-3.7.2.12.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-13 21:00:22",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "nextgis",
    "github_project": "pygdal",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "lcname": "pygdal"
}
        
Elapsed time: 0.11823s