I installed aftership module for Python and it looks that it works only for Python2 not Python3. https://pypi.org/project/aftership/ I installed it using:
pip install aftership
Now, when I execute simple script that uses 'import aftership' with Python2 it works, ,but not with Python3:
michal@ubuntu:~$ python3 track
Traceback (most recent call last):
File "track", line 1, in <module>
import aftership
ModuleNotFoundError: No module named 'aftership'
List of pip modules shows that it is installed:
michal@ubuntu:~$ pip freeze
aftership==0.2
What might be wrong? Thanks for any advices.