pyrr and seaborn are not in the dependency list, but basic importing doesn't work without having them installed
$ pip install pytransit
>>> import pytransit
[...]
~/dev/yeehaw/.venv/lib/python3.7/site-packages/pytransit/utils/octasphere.py in <module>
22 from math import sin, cos, acos, pi
23 from numpy import empty, array, vstack, cross, dot
---> 24 from pyrr import quaternion
25
26
ModuleNotFoundError: No module named 'pyrr'
and similar for seaborn
After manually installing pyrr and seaborn import works fine.
https://github.com/hpparvi/PyTransit/blob/826ce3a53fc820a3fe24f812dc0c4dc3208a946b/setup.py#L34
pyrr
andseaborn
are not in the dependency list, but basic importing doesn't work without having them installedand similar for
seaborn
After manually installing
pyrr
andseaborn
import works fine.