Conda Install Pygmaps
Solution 1:
Unfortunately, pygmaps
is listed on pypi, but not available there for download. The actual code can be downloaded from the Google code site as a .tar.gz
file and installed manually, or even used in your source code directly, license permitting. You should have permissions to modify the default installation directory if you have the permissions to run pip
.
It seems that pygmaps
is no longer being supported, so you may want to check out the extended fork, pygmaps-extended
, which does not appear to even be mentioned on pypi
, but has a valid setup.py
file. The following should therefore work:
pip install git+https://github.com/thearn/pygmaps-extended
This fork hasn't received attention for a while either, but it does have a more recent commit than the original.
The information in this answer is distilled from the answers to pip install pygmaps python.
Post a Comment for "Conda Install Pygmaps"