我遵循以下指示:http://www.pygame.org/wiki/CompileUbuntu?parent=Compilation
说明给出了在Ubuntu上安装Pygame for Python 3的步骤。
在我到达Mission::find()
->where((new Query())->where(['or', 'id' => $ids, 'created_by' => $user->id])->where)
->activeOrCancel()
->all();
步骤之前,我没有遇到任何问题。这是命令输出的内容:
python3 setup.py build
如果我只是在Python 2和Python 3中运行Traceback (most recent call last):
File "setup.py", line 109, in <module>
from setuptools import setup, find_packages
ImportError: No module named 'setuptools'
,它会报告没有名为pygame的模块。
有什么特别需要做的吗?谢谢!
编辑:按照@docmarvin的说明安装了模块setuptools。仍然是同样的错误
答案 0 :(得分:0)
sudo apt install python3-setuptools
^ separate from Python 2 setuptools.
答案 1 :(得分:-1)
尝试安装setuptools,例如使用命令行中的pip:
pip install setuptools