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
Exception when trying to install & use following the README (pip alternative).
Describe your environment
MacBook Pro 2023, M3
Python 3.12.4
To Reproduce
python3 -m venv ./venv
source ./venv/bin/activate
pip install emerge-viz
emerge -a swift
The console will print a stack trace and the culprit:
ModuleNotFoundError: No module named 'pkg_resources'
Traceback (most recent call last):
File "..../venv/bin/emerge", line 5, in <module>
from emerge.main import run
File "..../venv/lib/python3.12/site-packages/emerge/main.py", line 8, in <module>
from emerge.appear import Emerge
File "..../venv/lib/python3.12/site-packages/emerge/appear.py", line 24, in <module>
from emerge.languages.pyparser import PythonParser
File "..../venv/lib/python3.12/site-packages/emerge/languages/pyparser.py", line 16, in <module>
import pkg_resources
ModuleNotFoundError: No module named 'pkg_resources'
Expected behavior
No exception.
Screenshots
N/A
Additional context
N/A
The text was updated successfully, but these errors were encountered:
I just encountered this issue as well. I was, however, following the guide to install it from source instead (Windows 11, Python 3.12.0)
Running pip install --upgrade setuptools fixed it for me.
I just encountered this issue as well. I was, however, following the guide to install it from source instead (Windows 11, Python 3.12.0) Running pip install --upgrade setuptools fixed it for me.
I can confirm that this fixes it for me too. Great tip, thanks for sharing!
Describe the bug
Exception when trying to install & use following the README (pip alternative).
Describe your environment
To Reproduce
The console will print a stack trace and the culprit:
ModuleNotFoundError: No module named 'pkg_resources'
Expected behavior
No exception.
Screenshots
N/A
Additional context
N/A
The text was updated successfully, but these errors were encountered: