-
Notifications
You must be signed in to change notification settings - Fork 71
Description
Hello, i have a small issue here.
i ran the following commands in my terminal
pip install CounterFit pip install counterfit-connection pip install counterfit-shims-grove
i also have checked my python version using python --version and got back with this:
(.venv) krishna@Krishna:~/Documents/projects/nightlight$ python --version
Python 3.13.1
But, when i try to run CounterFit using this command: counterfit, it gives me this error:
(.venv) krishna@Krishna:~/Documents/projects/nightlight$ counterfit Traceback (most recent call last):
File "/home/krishna/Documents/projects/nightlight/.venv/bin/counterfit", line 5, in <module> from CounterFit.counterfit import main
File "/home/krishna/Documents/projects/nightlight/.venv/lib/python3.13/site-packages/CounterFit/counterfit.py", line 11, in <module> from eventlet import event
File "/home/krishna/Documents/projects/nightlight/.venv/lib/python3.13/site-packages/eventlet/__init__.py", line 17, in <module> from eventlet import convenience
File "/home/krishna/Documents/projects/nightlight/.venv/lib/python3.13/site-packages/eventlet/convenience.py", line 4, in <module> from eventlet import greenpool
File "/home/krishna/Documents/projects/nightlight/.venv/lib/python3.13/site-packages/eventlet/greenpool.py", line 4, in <module> from eventlet import queue
File "/home/krishna/Documents/projects/nightlight/.venv/lib/python3.13/site-packages/eventlet/queue.py", line 49, in <module> from eventlet.event import Event
File "/home/krishna/Documents/projects/nightlight/.venv/lib/python3.13/site-packages/eventlet/event.py", line 3, in <module> from eventlet import hubs
File "/home/krishna/Documents/projects/nightlight/.venv/lib/python3.13/site-packages/eventlet/hubs/__init__.py", line 7, in <module> from eventlet.support import greenlets as greenlet
File "/home/krishna/Documents/projects/nightlight/.venv/lib/python3.13/site-packages/eventlet/support/__init__.py", line 6, in <module> from eventlet.support import greenlets
File "/home/krishna/Documents/projects/nightlight/.venv/lib/python3.13/site-packages/eventlet/support/greenlets.py", line 1, in <module> import distutils.version ModuleNotFoundError: No module named 'distutils'
please look into this.