0

if i try to "import curses" with python 3.9.6 installed i receive the message

"C:\Program Files\Python39\python.exe" C:/Users/marco/PyCharm/Custom01/cursor.py
Traceback (most recent call last):
  File "C:\Users\marco\PyCharm\Custom01\cursor.py", line 1, in <module>
    import curses
  File "C:\Program Files\Python39\lib\curses\__init__.py", line 13, in <module>
    from _curses import *
ModuleNotFoundError: No module named '_curses'

Can someone help me? What I've to do? Thanks a lot.

1 Answers1

0
  • try after installing windows-curses with:
pip install windows-curses
Anurag Parmar
  • 252
  • 2
  • 12