dropbox / securitybot

Distributed alerting for the masses!
Apache License 2.0
994 stars 112 forks source link

getting pytz error #21

Closed me0ne0 closed 7 years ago

me0ne0 commented 7 years ago

hello! i am a newbie. i was trying to implement security bot as my class assignment. I am getting the following error when i run main.py by following your guidelines

Traceback (most recent call last): File "main.py", line 4, in from securitybot.bot import SecurityBot File "C:\securitybot-master\securitybot\bot.py", line 9, in from securitybot.user import User File "C:\securitybot-master\securitybot\user.py", line 9, in import pytz ModuleNotFoundError: No module named 'pytz'

can u please help me?

lxbrtsch commented 7 years ago

You're getting this error because you haven't installed the module pytz. I suggest looking at the file requirements.txt in the repo. This file lists all the required modules for the package. I suggest reading this documentation page about installing modules.

me0ne0 commented 7 years ago

thank you for your help