AttributeError: module 'pyproj' has no attribute 'CRS' #2
Answered
by
HowcanoeWang
HowcanoeWang
asked this question in
Q&A
-
when using this package, it gives errors like: >>> from pyproj import CRS
...
AttributeError: module 'pyproj' has no attribute 'CRS' How to fix it? |
Beta Was this translation helpful? Give feedback.
Answered by
HowcanoeWang
Dec 22, 2020
Replies: 1 comment
-
using to following script to check your pyproj version: > conda list
...
pyparsing 2.4.7 py_0
pyproj 2.6.1.post1 pypi_0 pypi
... sometimes it happens in conda environment, please update pyproj to latest version by pip > pip install pyproj -U it may help to fix this problem |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
HowcanoeWang
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
using to following script to check your pyproj version:
> conda list ... pyparsing 2.4.7 py_0 pyproj 2.6.1.post1 pypi_0 pypi ...
sometimes it happens in conda environment, please update pyproj to latest version by pip
> pip install pyproj -U
it may help to fix this problem