gpt4 book ai didi

import - python readline 模块不适用于 Windows?

转载 作者:行者123 更新时间:2023-12-02 02:24:59 24 4
gpt4 key购买 nike

当然,我已经离开 PYTHON 两年多了。我正试图重新开始,我记得几年前 Windows 上就提供了命令和变量完成功能。由于存在依赖关系,我们陷入了 2.6 的困境。

今天,我尝试导入 readline。我从 pip 收到此消息。

C:\Users\Joe>pip3 install readline Collecting readline Using cached https://files.pythonhosted.org/packages/f4/01/2cf081af8d880b44939a5f1b446551a7f8d59eae414277fd0c303757ff1b/readline-6.2.4.1.tar.gz Complete output from command python setup.py egg_info:error: this module is not meant to work on Windows

我的版本是:

Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:59:51) [MSC v.1914 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. import readline Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'readline'

最佳答案

我最近在 Windows 10 上遇到了同样的问题。readline不适用于 Windows,但有 pyreadline3 (已废弃的 pyreadline 包的延续)适用于 Windows,您可以尝试一下。

尝试安装pyreadline3并使用它代替readline:

  • pip:pip install pyreadline3python -m pip install pyreadline
  • mamba : mamba install -c conda-forge pyreadline3
  • conda :conda install -c conda-forge pyreadline3

然后,在你的 python 文件中执行以下操作:

from pyreadline3 import Readline
readline = Readline()

这样,您就可以像在 Linux 系统中一样在 Windows 中使用 readline

关于import - python readline 模块不适用于 Windows?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51157443/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com