You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Starplot is available on [PyPI](https://pypi.org/project/starplot/), but it's basically just a thin layer on top of [Matplotlib](https://matplotlib.org/stable/), [Skyfield](https://github.com/skyfielders/python-skyfield), [Cartopy](https://scitools.org.uk/cartopy/docs/latest/), and others. So, before installing Starplot you'll need a few dependencies. Below are instructions for installing on macOS and Linux.
1
+
Starplot is available on [PyPI](https://pypi.org/project/starplot/), and its dependencies have binary wheels for most operating systems, so installation should be easy via pip. See below for details.
@@ -51,10 +34,22 @@ RUN starplot setup --install-big-sky # Optional
51
34
52
35
## Troubleshooting
53
36
37
+
### GEOS / GDAL errors on installation
38
+
39
+
If you see any errors related to GEOS and/or GDAL when trying to install Starplot, then you may need to build those dependencies from source for your environment.
40
+
41
+
See their websites for details:
42
+
43
+
-[GEOS](https://libgeos.org/)
44
+
-[GDAL](https://gdal.org/)
45
+
54
46
### Segmentation Fault with map plots
55
47
56
48
If you're seeing "segmentation fault" errors when creating map plots, you may have to install [shapely](https://shapely.readthedocs.io/en/stable/index.html) from source for your runtime environment:
57
49
```
58
50
pip install --no-binary :all: shapely
59
51
```
60
52
*Warning: this may take awhile (5+ minutes), because it builds shapely from source.*
0 commit comments