You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Quick question im trying to run tybot on a fresh install of ubuntu 24 server i have python3 and pip install sqlite3 etc but when i try to run the bot im getting this error:
ModuleNotFoundError: No module named 'pkg_resources'
Traceback (most recent call last):
File "/home/dev/aobots/bootstrap.py", line 8, in <module> from upgrade import run_upgrades
File "/home/dev/aobots/upgrade.py", line 1, in <module> from core.db import DB
File "/home/dev/aobots/core/db.py", line 4, in <module> from pkg_resources import parse_version
the user is not using docker.
pkg_resources comes from setuptools, which seems to be not installed by default there, so adding it to requirements.txt might fix this.
The text was updated successfully, but these errors were encountered:
I'm just relaying this from discord:
the user is not using docker.
pkg_resources
comes fromsetuptools
, which seems to be not installed by default there, so adding it torequirements.txt
might fix this.The text was updated successfully, but these errors were encountered: