pyproj stopped from being installed on alpine image due to new cython release #1323
Answered
by
snowman2
akashdiware
asked this question in
Q&A
-
We have been running python 3.10 with pyproj package for a while on alpine 3.17 image. I assume it's failing due to recent release of cython? |
Beta Was this translation helpful? Give feedback.
Answered by
snowman2
Jul 20, 2023
Replies: 1 comment 4 replies
-
A fix has been added for cython 3: #1321 I believe this should work for current versions of pyproj: python -m pip install 'cython<3'
python -m pip install --no-use-pep517 pyproj To install the version with the fix implemented:
|
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
snowman2
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A fix has been added for cython 3: #1321
I believe this should work for current versions of pyproj:
python -m pip install 'cython<3' python -m pip install --no-use-pep517 pyproj
To install the version with the fix implemented: