如何在我的编辑器中安装 curses 库?
How do I install curses library in my editor?
我无法在我的编辑器中安装 curses
库。有没有其他方法可以确保我安装了库并且可以导入它?
我正在尝试在 Pycharm 社区版中使用 venv
构建一个井字游戏。我使用命令提示符在我的脚本所在的目录中导入了 curses。我可以在 IDLE 编辑器中导入 curses
。但是,Settings->Project Interpreter
.
中没有名为 curses
的包
pip install curses‑2.2‑cp36‑cp36m‑win_amd64.whl
这会引发错误:
Requirement 'curses-2.2-cp36-cp36m-win_amd64.whl' looks like a
filename, but the file does not exist
curses-2.2-cp36-cp36m-win_amd64.whl is not a supported wheel on this
platform.
编辑了配置并在输出控制台中使用模拟终端选中了复选框,仍然无法正常工作。
你应该使用:
pip install https://download.lfd.uci.edu/pythonlibs/n5jyqt7p/curses-2.2.1+utf8-cp37-cp37m-win_amd64.whl
pip 命令行安装程序部分:
cp37 == CPython 3.7
所以您需要适合您安装的 Python 环境的 whl
安装文件。
我无法在我的编辑器中安装 curses
库。有没有其他方法可以确保我安装了库并且可以导入它?
我正在尝试在 Pycharm 社区版中使用 venv
构建一个井字游戏。我使用命令提示符在我的脚本所在的目录中导入了 curses。我可以在 IDLE 编辑器中导入 curses
。但是,Settings->Project Interpreter
.
curses
的包
pip install curses‑2.2‑cp36‑cp36m‑win_amd64.whl
这会引发错误:
Requirement 'curses-2.2-cp36-cp36m-win_amd64.whl' looks like a filename, but the file does not exist curses-2.2-cp36-cp36m-win_amd64.whl is not a supported wheel on this platform.
编辑了配置并在输出控制台中使用模拟终端选中了复选框,仍然无法正常工作。
你应该使用:
pip install https://download.lfd.uci.edu/pythonlibs/n5jyqt7p/curses-2.2.1+utf8-cp37-cp37m-win_amd64.whl
pip 命令行安装程序部分:
cp37 == CPython 3.7
所以您需要适合您安装的 Python 环境的 whl
安装文件。