Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/computate-org/computate_gdal
https://github.com/computate-org/computate_gdal
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/computate-org/computate_gdal
- Owner: computate-org
- Created: 2022-07-14T20:38:26.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-26T20:53:08.000Z (over 2 years ago)
- Last Synced: 2024-11-05T15:39:01.098Z (2 months ago)
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Install gdal
## Install the latest Python and setup a new Python virtualenv
```bash
pkcon install -y git
pkcon install -y python3
pkcon install -y python3-pip
pkcon install -y python3-virtualenv
virtualenv-3 ~/python
source ~/python/bin/activate
echo "source ~/python/bin/activate" | tee -a ~/.bashrc
```## Install the latest Ansible
```bash
pip install setuptools_rust wheel
pip install --upgrade pip
pip install ansible
```## Install the gdal ansible role
### Create a directory for the ansible role.
```bash
install -d ~/.ansible/roles/computate.computate_gdal
```### Clone the gdal ansible role.
```bash
git clone [email protected]:computate-org/computate_gdal.git ~/.ansible/roles/computate.computate_gdal
```## Run the gdal ansible playbook to install the application locally.
```bash
cd ~/.ansible/roles/computate.computate_gdal
ansible-playbook install.yml
```