-
Notifications
You must be signed in to change notification settings - Fork 215
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
When I install pyproj, pip returns error 127 #323
Comments
Interesting, what happens when you execute |
and
Currently, it works as normal.
|
Run this from a python console: import subprocess
proj_ver_bytes = subprocess.check_output(['/usr/local/bin/', 'proj'], stderr=subprocess.STDOUT) It should give you the same Exception. Try this one: proj_ver_bytes = subprocess.check_output('/usr/local/bin/proj', stderr=subprocess.STDOUT) I saw some forum post that were suggesting that the first argument in When you run EDIT added below: $ /usr/local/bin/proj
$ echo $?
|
Return Exception:
It's interesting.
But, the above code seems to work normally.
Run echo $?:
EDIT added below: Check my proj permission:
|
I messed up the my first test. I should have testing it out before posting. Sorry. Ignore that one. So, it sounds like the second test worked. Does this work (Test 4)? (This is actually what is being run in proj_ver_bytes = subprocess.check_output(['/usr/local/bin/proj'], stderr=subprocess.STDOUT) If that reproduces the problem, this should be an easy fix. |
@bluems can you try:
|
Looks like merging the change to master closed this issue. @bluems wr would still appreciate your feedback. Thanks! |
OS: Raspbian latest version(Kernel 4.19.42)
Python: 3.6.8
Proj: 6.1.0
When I install pyproj, pip returns error 127.
Error Message:
run sudo find / -name proj:
How do I install this?
The text was updated successfully, but these errors were encountered: