I just updated from 3.6 and curses is nowhere to be found in pip list. When I try to run my program I get
Traceback (most recent call last):
File "/media/HD/Documents/Python/program/menu.py", line 1, in <module>
import curses
File "/usr/local/lib/python3.9/curses/__init__.py", line 13, in <module>
from _curses import *
ModuleNotFoundError: No module named '_curses'
"pip3 install curses" gives me
ERROR: Could not find a version that satisfies the requirement curses (from versions: none)
ERROR: No matching distribution found for curses
Any ideas? Does python not come with curses anymore?
Edit: This is in Ubuntu