CursaTetra icon indicating copy to clipboard operation
CursaTetra copied to clipboard

No module named '_curses'

Open Muhimen123 opened this issue 4 years ago • 1 comments

Tried to run the app and got this error

❯ python cursatetra.py
Traceback (most recent call last):
  File "cursatetra.py", line 2, in <module>
    import curses as crs
  File "Y:\Python_3.8.3\lib\curses\__init__.py", line 13, in <module>
    from _curses import *
ModuleNotFoundError: No module named '_curses'

Muhimen123 avatar Jul 24 '20 14:07 Muhimen123

Seems by your file path that you're on Windows; Windows releases of Python don't have curses included, though you can use pip to install windows-curses, and by tests, it should work just find. link to windows-curses

Sorry for the late reply by the way.

cSquaerd avatar Nov 30 '20 02:11 cSquaerd