turtle下载
为什么用“pip install turtle”会报错“error: complete output from command python ”....... python本身自带turtle的 Seawolf 发表于 2019-6-17 11:26python本身自带turtle的
#PythonDraw.py
import turtle
turtle.setup(650,350,200,200)
turtle.penup()
turtle.fd(-250)
turtle.pendown()
turtle.pensize(25)
turtle.pencolor('purple')
turtle.seth(-40)
for i in range(4):
turtle.circle(40,80)
turtle.circle(-40,80)
turtle.circle(40,80/2)
turtle.fd(40)
turtle.circle(16,180)
turtle.fd(40*2/3)
turtle.done() 为什么会报错Traceback (most recent call last):
File "D:\python\pythondraw.py", line 2, in <module>
import turtle
File "D:\python\turtle.py", line 2, in <module>
turtle.pensize(2)
AttributeError: module 'turtle' has no attribute 'pensize' hzxwonder 发表于 2019-6-17 11:46
为什么会报错
你的代码没问题,检查一下你的python文件是不是命名为turtle了,如果是的话改成其他的名字,如果还不行就要重装turtle了 Seawolf 发表于 2019-6-17 11:54
你的代码没问题,检查一下你的python文件是不是命名为turtle了,如果是的话改成其他的名字,如果还不行就 ...
卸载,说”warning:skipping turtle as it is not installed”.是不是说turtle没安装 hzxwonder 发表于 2019-6-17 12:06
卸载,说”warning:skipping turtle as it is not installed”.是不是说turtle没安装
是的,那你要装一下了 Seawolf 发表于 2019-6-17 12:10
是的,那你要装一下了
下载完后有setup文件,然后怎么做 1.打开setup.py文件,第40行修改为:
except (ValueError, ve):
2.用pip3安装修:
pip install -e D:\turtle-0.0.2
-e后面接上我们修改过setup.py文件的目录。 Seawolf 发表于 2019-6-17 12:23
1.打开setup.py文件,第40行修改为:
可以了,谢谢{:10_250:} hzxwonder 发表于 2019-6-17 12:27
可以了,谢谢
不客气
页:
[1]