我想逃跑
pip install curses
字符串
在CMD put中,它返回错误:
ERROR: Could not find a version that satisfies the requirement curses (from versions: none)
ERROR: No matching distribution found for curses
型
我在VS Code上使用Python 3.12.0,并试图使用curses包,但无法安装它,我在CMD中安装了windows-curses pip install windows-curses
包,但它没有像预期的那样工作,并且无法像互联网上的视频那样调用它:
curses.curs_set(0)
型
我也试过pip3 install curses
,但它不工作。
因此,curses和windows-curses之间可能存在差异。
1条答案
按热度按时间bgibtngc1#
您可以使用
pip install windows-curses
安装包。然后使用python代码
import curses
来使用它。请注意,即使您安装了名为
windows-curses
的软件包,您仍然使用import curses
导入它。这是因为windows-curses
是curses
模块的Windows兼容版本,而不是单独的模块。