我安装了 Ubuntu 16.04.1,其中安装了 Python 3.5。因此,当我运行 时python3
,Python 3.5 正在运行。我需要安装 Python 3.4(因为这是 Pygame 模块支持的最新版本)。
我该如何在这台机器上安装 Python 3.4?我必须卸载 Python 3.5 吗?如果 python3 运行 3.5,我该如何运行 Python 3.4?
答案1
你不需要安装 Python 3.4,因为有一个适用于 3.5 的 pygame 版本。打开终端(按Ctrl+ Alt+ T),然后运行:
sudo apt install python3-pip
pip3 install pygame
最后一个命令给出输出:
Collecting pygame
Downloading pygame-1.9.2rc1-cp35-cp35m-manylinux1_x86_64.whl (10.0MB)
100% |████████████████████████████████| 10.0MB 54kB/s
Installing collected packages: pygame
Successfully installed pygame
注意cp35
,这意味着它适用于 Python 3.5。这可以验证:
$ python3
Python 3.5.2+ (default, Sep 22 2016, 12:18:14)
[GCC 6.2.0 20160927] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import pygame
>>>
请注意导入时没有出现错误。