downloaded latest instapy master, ran script, I get this error in powershell
from plyer import notification
ModuleNotFoundError: No module named 'plyer'
(acct) PS C:Usersuser1devacctinstapy> python loc3.py
Traceback (most recent call last):
File "loc3.py", line 7, in
from instapy import InstaPy
File "C:Usersuser1devacctinstapyinstapy__init__.py", line 2, in
from .instapy import InstaPy
File "C:Usersuser1devacctinstapyinstapyinstapy.py", line 23, in
from .comment_util import comment_image
File "C:Usersuser1devacctinstapyinstapycomment_util.py", line 7, in
from .util import update_activity
File "C:Usersuser1devacctinstapyinstapyutil.py", line 20, in
from .quota_supervisor import quota_supervisor
File "C:Usersuser1devacctinstapyinstapyquota_supervisor.py", line 7, in
from plyer import notification
ModuleNotFoundError: No module named 'plyer'
any ideas? I can post the files referenced if necessary.
Cheers.
run this in command terminal
"pip install plyer"
without quotations
didn't realize there was something new to install. awesome thanks.
tried this, tried uninstalling over and over @CTZNkjs and still no luck on raspberry pi
install python 3 and try sudo python3 quickstart.py
after that install the modules that are being asked.
This worked for me on raspberry pi3
@callum8004 did @aku6640 direction work for you?
Hey, we did an update today, now everything you need to do to fix this kind (missing modules) of issue is:
pip3 install -r requirements.txt
(if you use python3)
Most helpful comment
didn't realize there was something new to install. awesome thanks.