I'm trying to run a python script that uses easyimap to send and recive mails. The script works fine on windows. I want to run it 24/7, but don't want to leave my pc on all the time. A PI would be a perfect solution for that. On the Pi I installed python with
sudo apt-get install python3
which worked fine and python was installed. I then installed pip3 with
sudo apt-get install pip3
which worked fine as well. I then installed easyimap with
sudo pip3 install easyimap
also ran fine and told me it was installed. When i tried running my code with
python main.py
I got the error
Traceback (most recent call last):
File "main.py", line 5, in <module>
import easyimap
ImportError: No module named easyimap
I also installed easyimap-python which didn't help. Any suggestions I could try?