我想知道这是否是Python IDLE

问题描述 投票:1回答:2

起初,我的英语不好,但是我正在尽力,谢谢。

我连接了Amazon Lightsail并安装了python36。

这是我安装的列表。

  • python36.x86_64
  • python36-devel.x86_64
  • python36-libs.x86_64
  • python36-pip.noarch

然后我输入'python3'后进入外壳,如下图所示。enter image description here

https://realpython.com/python-idle/#what-is-python-idle,如何使用Python IDLE Shell的第一张图像,它看起来与我上传的图像非常相似。

所以我认为这是Python IDLE,但我不确定。

由于https://www.centos.org/forums/viewtopic.php?t=53908,'python34-tools'包含idle3。

什么?我没有安装“ python36-tools”!

我安装了'python36-tools',并键入了'idle3',但出现错误,'找不到命令'。

即使根据https://centos.pkgs.org/7/puias-unsupported-x86_64/python36-idle-3.6.6-1.sdl7.x86_64.rpm.html,也绝对是Python IDLE!

什么是正确的事?我很困惑。

我想了解更多,所以请访问https://docs.python.org/ko/3.6/whatsnew/3.6.html,并找到以下信息:“以前作为扩展实现的IDLE功能已重新实现为常规功能。]

可以这样翻译吗?

''从版本3.6.3开始,您不必分别安装idle3。只需输入python3即可使用Python IDLE。']​​>

我搜索了与上述相关的信息,但找不到任何东西。

请帮助我!

起初,我的英语不好,但是我正在尽力,谢谢。我连接了Amazon Lightsail并安装了python36。这是我安装的列表。 python36.x86_64 python36-devel.x86_64 python36 -...

python-3.x linux python-idle
2个回答
1
投票

IDLE是一个GUI应用程序,带有菜单和窗口。因此,您需要使用Linux / macos / windows桌面环境,它不能在终端窗口中运行。


0
投票

[正如其他人所说,非Windows命令行上的python3以交互模式启动python。要在命令行上启动IDLE,请使用python3 -m idlelib

© www.soinside.com 2019 - 2024. All rights reserved.