我是靠谱客的博主 感性寒风,最近开发中收集的这篇文章主要介绍python3.7安装turtle步骤-Python3安装turtle问题,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Python3.5安装turtle:

pip3 install turtle

提示错误:

Collecting turtle

Using cached https://files.pythonhosted.org/packages/ff/f0/21a42e9e424d24bdd0e509d5ed3c7dfb8f47d962d9c044dba903b0b4a26f/turtle-0.0.2.tar.gz

Complete output from command python setup.py egg_info:

Traceback (most recent call last):

File "", line 1, in

File "/tmp/pip-install-hpqxw6_s/turtle/setup.py", line 40

except ValueError, ve:

^

SyntaxError: invalid syntax

----------------------------------------

Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-install-hpqxw6_s/turtle/

仔细查看安装turtle出错的错误信息,可以看到是个语法错误。

pip在下载turtle 0.0.2包后,会解压到本地再安装,提示的错误在解压的setup.py文件里面,

解决的办法就是:按照给定的链接(我的是这个),把turtle包下载到本地,手动解压,修改setup.py文件再安装。

打开setup.py文件,第40行修改为 except (ValueError, ve):

原来的是Python2的写法,没有括号,加了括号之后Python3就能用了。

用pip3安装修: pip install -e turtle-0.0.2

-e后面接上我们修改过setup.py文件的目录。

这样就搞定了。

另外,如果提示 python-tk 未安装,用apt命令安装就可以了:

sudo apt install python-tk

最后

以上就是感性寒风为你收集整理的python3.7安装turtle步骤-Python3安装turtle问题的全部内容,希望文章能够帮你解决python3.7安装turtle步骤-Python3安装turtle问题所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部