python_turtle海龟画图安装

1、python3.7里面自带turtlr,如果在python_shell里面运行,则可以直接使用此模块。

python_turtle海龟画图安装_第1张图片

2、如果想在dos窗口里面运行python文件实现画图,则需要安装turtle第三方库。

下载地址:https://pan.baidu.com/s/1vpOadOjFVp99VtNVoJCoAQ

提取码:20wo

1、解压文件:

2、安装

      pip install -e D:\turtle-0.0.2

安装过程中遇到的问题:

       1、如果报pip版本过低,则需要升级pip(报错最后边有提示,按提示命令升级pip):

            python -m pip install --upgrade pip

       2、安装过程中报错visualcppbuildtools等什么的看报错信息,需要安装visualcppbuildtools。

            解压包有,直接运行即可,安装时间在30分钟左右。

             

3、PyCharm 5.0.3想要直接运行turtlr代码进行画图,(可能要需要安装turtle),但是必须做的就是修改__all__变量

C:\Users\123\AppData\Local\Programs\Python\Python37\Lib\turtle.py

__all__ = ['ScrolledCanvas', 'TurtleScreen', 'Screen', 'RawTurtle', 'Turtle', 'RawPen', 'Pen', 'Shape', 'Vec2D', 'back',
           'backward', 'begin_fill', 'begin_poly', 'bk', 'addshape', 'bgcolor', 'bgpic', 'bye', 'clearscreen',
           'colormode', 'delay', 'exitonclick', 'getcanvas', 'getshapes', 'listen', 'mainloop', 'mode', 'numinput',
           'onkey', 'onkeypress', 'onkeyrelease', 'onscreenclick', 'ontimer', 'register_shape', 'resetscreen',
           'screensize', 'setup', 'Terminator', 'setworldcoordinates', 'textinput', 'title', 'tracer', 'turtles',
           'update', 'window_height', 'window_width', 'write_docstringdict', 'done', 'circle', 'clear', 'clearstamp',
           'clearstamps', 'clone', 'color', 'degrees', 'distance', 'dot', 'down', 'end_fill', 'end_poly', 'fd',
           'fillcolor', 'filling', 'forward', 'get_poly', 'getpen', 'getscreen', 'get_shapepoly', 'getturtle', 'goto',
           'heading', 'hideturtle', 'home', 'ht', 'isdown', 'isvisible', 'left', 'lt', 'onclick', 'ondrag', 'onrelease',
           'pd', 'pen', 'pencolor', 'pendown', 'pensize', 'penup', 'pos', 'position', 'pu', 'radians', 'right', 'reset',
           'resizemode', 'rt', 'seth', 'setheading', 'setpos', 'setposition', 'settiltangle', 'setundobuffer', 'setx',
           'sety', 'shape', 'shapesize', 'shapetransform', 'shearfactor', 'showturtle', 'speed', 'st', 'stamp', 'tilt',
           'tiltangle', 'towards', 'turtlesize', 'undo', 'undobufferentries', 'up', 'width', 'write', 'xcor', 'ycor']

4、小海龟教程:https://www.cnblogs.com/nowgood/p/turtle.html

      

 

 

 

 

你可能感兴趣的:(python_turtle海龟画图安装)