skip to Main Content

so i’m making my first telegram bot, and when compiling code in ConEmu I got this error:

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

help me please.

2

Answers


  1. It can’t find pyown library. Install this library first, either to your working folder’s library folder or install it globally. Then import pyown library on your py file. Then write rest of the codes.

    Login or Signup to reply.
  2. import pyown
    ModuleNotFoundError: No module named 'pyown'
    

    Are you sure that the library is called pyown, not pyowm?

    https://pypi.org/project/pyowm/

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search