I'm having all sorts of trouble getting ezCol to work. I keep finding modules that are not installed, or are installed but don't seem operational.
Here's what I see, -
When py ezCol.py is ran, a long list is generated, then a little white square, then finally, the last line shows this error - "ModuleNotFoundError: No module named 'pkg_resources'"
A little searching showed me that I needed to run "setuptools" through pip.
After installing setup tools and verifying that that indee setupstools was installed, I reran py ezCol.py and got the same "module not found" error as before.
Traceback (most recent call last):
File "C:\Users\tmnat\AppData\Local\Python\pythoncore-3.14-64\Lib\multiprocessing\process.py", line 320, in _bootstrap
self.run()
~~~~~~~~^^
File "C:\Users\tmnat\AppData\Local\Python\pythoncore-3.14-64\Lib\multiprocessing\process.py", line 108, in run
self._target(*self._args, **self._kwargs)
~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\ezra\ezCol.py", line 1780, in sdrTask
from rtlsdr import RtlSdr
File "C:\Users\tmnat\AppData\Local\Python\pythoncore-3.14-64\Lib\site-packages\rtlsdr\__init__.py", line 19, in <module>
import pkg_resources
ModuleNotFoundError: No module named 'pkg_resources'