如何在 Linux 上安装 Python-mistune?
Python3 中的 Mistune 包是具有渲染器功能的最快的 Markdown 解析器。它是一个纯粹的基于 Python 的包,并在Python 2.7、 Python 3.5+ 和 PyPy 中进行了测试。它是所有纯Python markdown 解析器中最快的,并提供表格、脚注、自动链接、防护代码等功能。此包可在 Windows、Linux 和 macOS 上使用。因此,在本文中,我们将在 Linux 操作系统上以Python安装 Mistune 包。
使用 PIP 在 Linux 上安装 Mistune 包
要求:
- Python3
- Python3-pip
要在 Linux 中安装 Mistune 软件包,我们必须遵循以下步骤:
第 1 步:在 Linux 机器上安装最新版本的 Python3,在终端中使用以下命令:
sudo apt-get install python3
第 2 步:现在,使用以下命令安装 pip 模块。该模块是安装和管理 Python3 的所有包所必需的。
sudo apt install python3-pip
第 3 步:使用以下命令安装 Mistune 包:
sudo pip3 install mistune
使用 PIP 在 Linux 上验证 Mistune 软件包安装
要验证 Mistune 软件包是否已成功安装在您的系统中,请在终端中运行以下命令:
python3 -m pip show mistune
如果安装在您的系统中成功完成,您将获得以下输出。