Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to install turtle with python3 on linux

Tags:

python-3.5

when I install turtle,meet some problem like this :

enter image description here

My python version is 3.5.2 and OS is Ubuntu 16.04 LTS

like image 838
shea Avatar asked Oct 06 '16 20:10

shea


People also ask

How do I install Python turtle?

To install the Turtle package in Linux follow the following steps: Step 1: Firstly, we will install the current version of Python3 using the following command. Step 3: Now using the PIP manager we are going to install the Turtle package. Now, we will run the below command in the terminal to install the Turtle library.

How do I install the turtle in Pydroid 3?

Yes go to pip and search for library you want to use but before installation of library install pydroid repository plugin from below link. https://play.google.com/store/apps/details?id=ru.iiec.pydroid3.quickinstallrepo Then download your library and use it .

Is turtle pre installed in Python?

turtle is a pre-installed Python library that enables users to create pictures and shapes by providing them with a virtual canvas.

Do I need to download turtle for Python?

No, PythonTurtle is completely self-contained and does not require having Python or anything else installed. PythonTurtle is open-sourced and is released under the MIT license. Here is the GitHub page for PythonTurtle, in which you can view its source code, report issues, fork it, etc.


1 Answers

pip install python-tk

then go to python shell and type

from turtle import*
fd(100)
like image 85
lalu Avatar answered Oct 22 '22 07:10

lalu