gpt4 book ai didi

python - 在 Ubuntu 上安装 python 模块

转载 作者:IT王子 更新时间:2023-10-29 00:24:33 28 4
gpt4 key购买 nike

我需要在 Ubuntu Linux 12.04 上为 python 安装一些模块。我想要 pygame 和 livewires,但我不确定如何安装它们。

我有 livewires 的 py 文件,它是经过特别编辑的(来 self 正在阅读的一本书),我想安装它,但我不确定如何安装,我还想安装 pygame。

最佳答案

有两种很好的方法可以在 Ubuntu(和类似的 Linux 系统)上安装 Python 包:

sudo apt-get install python-pygame

使用 Debian/Ubuntu 包管理器 APT。这仅适用于 Ubuntu 提供的包,除非您更改 APT 配置,特别是似乎没有适用于 Python 3 的 PyGame 包。

另一种选择是使用 PIP,Python 包管理器:

sudo apt-get install python3-pip

然后安装它

sudo pip3 install pygame

PyPI获取PyGame包并为 Python 3 安装它。与 APT 相比,PIP 有一些限制,但它总是获取最新版本的包,而不是 Ubuntu 打包程序选择发布的包。

编辑:重复我在评论中所说的话,pip3 还没有在 Ubuntu 12.04 中。它仍然可以安装

sudo apt-get install python3-setuptools
sudo easy_install3 pip
sudo apt-get purge python-pip

在此之后,pip 是 PIP 的 Python 3 版本,而不是 pip3。最后一个命令只是为了安全;可能有一个 Python 2 PIP 安装为 /usr/bin/pip

关于python - 在 Ubuntu 上安装 python 模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19034959/

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