Replies: 1 comment 2 replies
-
In my opinion you should use only Debian packages for your (Python) dependencies, or get everything from PyPI. But if the Python environments are separate, it shouldn't be an issue to have pyproj installed for both. Just don't link to differently versions of libproj in your address space through dependencies, this happens to QGIS users relatively often when they install different versions of dependencies locally or use packages from PPAs that aren't properly integrated. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I see that through the pygeoapi Dockerfile both
python3-proj
and the PyPi packagepyproj
(viarequirements.txt
) are installed. My question arises, since I think one gets two full and even different versions installed at different locations/usr/
(python3-proj
) and/usr/local
(pyproj
). At least I did a similar install in a MapProxy Docker Image."Bashing" into that running MapProxy image I see:
And (the default)
The latter is the default:
The PyPi version
pyproj
also is more recent. Can I assume that we could leave outpython3-proj
? Or do we have to install alibproj-dev
? Maybe @sebastic knows?Beta Was this translation helpful? Give feedback.
All reactions