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
The figlet dependency in flask-gopher is throwing the following error:
./run_server.py
Traceback (most recent call last):
File "/home/jblang/flask-gopher/demo/./run_server.py", line 23, in <module>
from pyfiglet import FigletFont
File "/home/jblang/flask-gopher/venv/lib/python3.12/site-packages/pyfiglet/__init__.py", line 11, in <module>
import pkg_resources
ModuleNotFoundError: No module named 'pkg_resources'
This can be fixed by installing the latest version of setuptools:
pip install --upgrade setuptools
You may want to include a note in your readme or see if you can add a dependency so that the latest setuptools is automatically installed.
The text was updated successfully, but these errors were encountered:
jblang
changed the title
Error caused by outdated setuptools
pkg_resources error caused by outdated setuptools
Jul 12, 2024
The figlet dependency in flask-gopher is throwing the following error:
This can be fixed by installing the latest version of setuptools:
You may want to include a note in your readme or see if you can add a dependency so that the latest setuptools is automatically installed.
The text was updated successfully, but these errors were encountered: