hzxwonder 发表于 2019-6-17 11:18:15

turtle下载

为什么用“pip install turtle”会报错“error: complete output from command python ”.......

Seawolf 发表于 2019-6-17 11:26:40

python本身自带turtle的

hzxwonder 发表于 2019-6-17 11:45:55

Seawolf 发表于 2019-6-17 11:26
python本身自带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()

hzxwonder 发表于 2019-6-17 11:46:46

为什么会报错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'

Seawolf 发表于 2019-6-17 11:54:29

hzxwonder 发表于 2019-6-17 11:46
为什么会报错

你的代码没问题,检查一下你的python文件是不是命名为turtle了,如果是的话改成其他的名字,如果还不行就要重装turtle了

hzxwonder 发表于 2019-6-17 12:06:45

Seawolf 发表于 2019-6-17 11:54
你的代码没问题,检查一下你的python文件是不是命名为turtle了,如果是的话改成其他的名字,如果还不行就 ...

卸载,说”warning:skipping turtle as it is not installed”.是不是说turtle没安装

Seawolf 发表于 2019-6-17 12:10:50

hzxwonder 发表于 2019-6-17 12:06
卸载,说”warning:skipping turtle as it is not installed”.是不是说turtle没安装

是的,那你要装一下了

hzxwonder 发表于 2019-6-17 12:17:57

Seawolf 发表于 2019-6-17 12:10
是的,那你要装一下了

下载完后有setup文件,然后怎么做

Seawolf 发表于 2019-6-17 12:23:29

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

2.用pip3安装修:
pip install -e D:\turtle-0.0.2
-e后面接上我们修改过setup.py文件的目录。

hzxwonder 发表于 2019-6-17 12:27:10

Seawolf 发表于 2019-6-17 12:23
1.打开setup.py文件,第40行修改为:




可以了,谢谢{:10_250:}

Seawolf 发表于 2019-6-19 12:04:02

hzxwonder 发表于 2019-6-17 12:27
可以了,谢谢

不客气
页: [1]
查看完整版本: turtle下载