sniffingpickles / Auto-Amazon-Giveaways

Automated Amazon Giveaways using Python3 & Pyppeteer :gift: :snake:
6 stars 8 forks source link

ModuleNotFoundError #8

Closed robbiepee closed 6 years ago

robbiepee commented 6 years ago

Encountered on run.

Traceback (most recent call last): File "give_it_away_now.py", line 2, in from lib.giveaway import GiveAwayBot File "C:\Users\robbiepee\Desktop\amazonauto\Auto-Amazon-Giveaways\lib\giveaway.py", line 11, in from tinydb import TinyDB, Query ModuleNotFoundError: No module named 'tinydb'

dziban303 commented 6 years ago

You need to run the updated requirements.txt. Use the command:

pip install -r requirements.txt

This will install the two new modules, including tinydb, required for the bot.

On Sun, Jul 29, 2018 at 10:04 PM robbiepee notifications@github.com wrote:

Encountered on run.

Traceback (most recent call last): File "give_it_away_now.py", line 2, in from lib.giveaway import GiveAwayBot File "C:\Users\robbiepee\Desktop\amazonauto\Auto-Amazon-Giveaways\lib\giveaway.py", line 11, in from tinydb import TinyDB, Query ModuleNotFoundError: No module named 'tinydb'

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/sniffingpickles/Auto-Amazon-Giveaways/issues/8, or mute the thread https://github.com/notifications/unsubscribe-auth/AHkHdZMzKKnOwq_VdBKe6d26dClOELKfks5uLnelgaJpZM4Vlthk .

robbiepee commented 6 years ago

Sorry, just realized that. Slipped my mind. This seems to have fixed the not-json-serializable issue. Thanks for the quick response!