python-can-monitor icon indicating copy to clipboard operation
python-can-monitor copied to clipboard

Import Error No Module Named _curses

Open jwdsoft opened this issue 5 years ago • 1 comments

I'm trying to use the can monitor after successfully installing it (pip install -e .) when I run the command canmonitor either for com port or from log file I get this error

canmonitor -f tests\data\test_data.log Traceback (most recent call last): File "C:\Python35\Scripts\canmonitor-script.py", line 11, in load_entry_point('canmonitor', 'console_scripts', 'canmonitor')() File "c:\python35\lib\site-packages\pkg_resources_init_.py", line 476, in load_entry_point return get_distribution(dist).load_entry_point(group, name) File "c:\python35\lib\site-packages\pkg_resources_init_.py", line 2700, in load_entry_point return ep.load() File "c:\python35\lib\site-packages\pkg_resources_init_.py", line 2318, in load return self.resolve() File "c:\python35\lib\site-packages\pkg_resources_init_.py", line 2324, in resolve module = import(self.module_name, fromlist=['name'], level=0) File "e:\arduino and reversing\canbus\python arduino canbus\python-can-monitor-master\canmonitor\canmonitor.py", line 4, in import curses File "c:\python35\lib\curses_init_.py", line 13, in from _curses import * ImportError: No module named '_curses'

jwdsoft avatar Nov 07 '19 20:11 jwdsoft

I figured out his issue by reading this https://stackoverflow.com/questions/32417379/what-is-needed-for-curses-in-python-3-4-on-windows7 It got me past this error

NoahWallace avatar Mar 04 '20 17:03 NoahWallace