Can't import a specific module

Problem description:
When trying to import the module “MeowerBot”, even with the package installed it logs the error

Traceback (most recent call last):
  File "main.py", line 1, in <module>
    from MeowerBot import Bot
ModuleNotFoundError: No module named 'MeowerBot'

Expected behavior:
It imports the module, and the program continues on while using said module.

Actual behavior:
Logs the error

Traceback (most recent call last):
  File "main.py", line 1, in <module>
    from MeowerBot import Bot
ModuleNotFoundError: No module named 'MeowerBot'

Steps to reproduce:
Download the package from the package page, add from MeowerBot import Bot to the start of your program, run it.

Bug appears at this link:
https://replit.com/@derpygamer2142/Python-Eval-Bot#main.py

Browser/OS/Device:
Using google chrome, windows 11

Hi @derpygamer2142 , welcome to the forums! Try entering pip install MeowerBot into the Shell?

2 Likes

That worked, thanks!

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.