Thursday, May 2, 2024
3
rated 0 times [  3] [ 0]  / answers: 1 / hits: 1151  / 1 Year ago, wed, february 1, 2023, 7:52:33

I'm trying to develop software in python that involves geographic coordinates.
I'd prefer to not rely on custom installed software, and only rely on standard packages.



So far, I've only found geopy hosted at Google, which should be useful (it actually provides way more than I need).



Are there any python packages that I should be looking at?


More From » package-management

 Answers
6

python-geopy has been packaged for Ubuntu 12.10. Since 14.04 python3-geopy has been packaged and it's now the current package in the default Ubuntu repositories.


If you can't install the packaged version (e.g. you're using Ubuntu 12.04), the standard way to install Python packages is to use pip (the python-pip Ubuntu package). When pip is installed, simply use:


sudo pip install geopy


and start using the package!


Note: pip and virtualenv are very useful to be in control of your Python environment, which is not possible with standard Ubuntu packages. You should learn to use them if you want to be serious about your Python development.


[#32332] Thursday, February 2, 2023, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
tudatchful

Total Points: 270
Total Questions: 109
Total Answers: 122

Location: Palau
Member since Tue, May 30, 2023
1 Year ago
;