答案1
从 Zelle 的 Python 页面开始http://mcsp.wartburg.edu/zelle/python/。
图形模块列为 *graphics.py。右键单击链接,然后选择 > 将链接另存为
在 PC 上将链接保存在 C:\Python31\Lib\site-packages
在 Mac 上将链接保存在
/库/框架/Python.framework/版本/3.1/lib/python3.1/site-packages/
在 Ubuntu 上将链接保存在
/usr/lib/python3/dist-packages
答案2
您需要将您的 graphics.py 副本复制到 python3 导入路径中:
sudo cp graphics.py /usr/local/lib/python3.4/dist-packages/
然后唯一需要安装的依赖项是 Tkinter:
sudo apt-get install python3-tk
要检查您是否可以导入新模块,请启动python3
如下解释器:
$ python3
Python 3.4.0 (default, Apr 11 2014, 13:05:11)
[GCC 4.8.2] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from graphics import *
>>>
您应该不会看到任何ImportError
消息。
答案3
纠正没有名为 Tkinter 和 _tkinter 的模块
sudo apt-get install tk-dev
cd /Python3.4.1
./configure
make
sudo make install