📜  如何在 MacOS 上安装 iPython?(1)

📅  最后修改于: 2023-12-03 15:38:20.812000             🧑  作者: Mango

如何在 MacOS 上安装 iPython?

iPython 是一个强大的交互式 shell,许多程序员都喜欢使用它作为他们的主要 Python shell。在本教程中,我们将介绍如何在 MacOS 上安装 iPython。

步骤 1:安装 Homebrew

我们需要使用 Homebrew 包管理器来安装 iPython。如果你还没有安装 Homebrew,请打开终端并运行以下命令。这将自动安装 Homebrew。

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
步骤 2:安装 iPython

一旦你安装了 Homebrew,你可以在终端中使用以下命令来安装 iPython。

brew install ipython

该命令将自动安装 iPython 及其所有依赖项。

步骤 3:启动 iPython

安装 iPython 后,在终端中输入 ipython 命令,即可启动 iPython。

ipython

你应该会看到类似于以下消息的提示符:

Python 3.9.2 (default, Feb 20 2021, 00:00:00)
Type 'copyright', 'credits' or 'license' for more information
IPython 7.22.0 -- An enhanced Interactive Python. Type '?' for help.

In [1]:

现在,你可以开始编写 Python 代码并在 iPython shell 中交互了。例如,你可以输入以下命令:

print('Hello, World!')

输出将会是:

Hello, World!
结论

现在你已经成功地在你的 MacOS 上安装了 iPython。通过使用 iPython,你可以更有效地编写和调试 Python 代码,并对 Python 语言有更深入的了解。