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