Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README: Add install instructions for Alpine Linux #520

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
README: Add install instructions for Alpine Linux
mil committed Oct 10, 2024
commit 6dc08981772ca4e24af62b0712c85eead2b05cff
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -150,6 +150,19 @@ To deactivate your virtual environment, enter the following command:

If you are working with IntelliJ or PyCharm, it is possible to use this virtual environment within the IDE. To do so, follow the instructions to create a virtual environment [here](https://www.jetbrains.com/help/idea/creating-virtual-environment.html).

#### Alpine Linux

Follow the steps below. First install python-dev, GDAL, RTree (Libspatialindex), and Proj. Then setup a virtual environment, activate it, and install the project requirements (requirements.txt):


```sh
$ apk add gdal-dev libspatialindex-dev python3-dev proj proj-dev proj-util
$ python -m venv venv
$ source venv/bin/activate
$ pip install -r requirements.txt

```

### Repository

To use it, clone the project on your local machine using HTTP with the following commands: