kajibanff
kajibanff

Reputation: 1

Python - ModuleNotFoundError: No module named 'pyown'

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.

Upvotes: 0

Views: 2087

Answers (2)

Ivan Vinogradov
Ivan Vinogradov

Reputation: 4483

import pyown
ModuleNotFoundError: No module named 'pyown'

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

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

Upvotes: 1

M. Ekram
M. Ekram

Reputation: 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.

Upvotes: 0

Related Questions