HA6Bots / Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader

A series of 3 programs that will automatically receive scripts from Reddit, allow the user to edit them, then be sent off to a video generator where they will be uploaded to YouTube automatically.
MIT License
619 stars 182 forks source link

Manualreview #18

Closed mkitching closed 4 years ago

mkitching commented 4 years ago

Hey, I figured a lot of it out but I am stuck on this part?

PS C:\Users\marcu\desktop\Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader-master\YouTube Bot Client\manualreview> python .\client.py Traceback (most recent call last): File ".\client.py", line 7, in <module> from manualreview import rawscriptsmenu ModuleNotFoundError: No module named 'manualreview' PS C:\Users\marcu\desktop\Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader-master\YouTube Bot Client\manualreview>

HA6Bots commented 4 years ago

Your python can't find the folder manualreview.

Either try adding this code to the very top of init.py import os import sys currentPath = os.path.dirname(os.path.realpath(__file__)) sys.path.append(currentPath.replace("\manualreview", ""))

If that doesn't work, google the problem as this is a fairly standard issue in python.

mkitching commented 4 years ago

Thank you!