Easy Draw Module
  • About the Project
  • Student Developed Art
  • 🐍Python
    • Setup and Install
    • Starter Template
    • Example Code
    • Style Guide
    • Module Reference
      • The Drawing Canvas
      • Colors
      • Drawing Shapes
      • Text and Images
      • Property Getting and Setting
      • Object Methods
      • Event Handling
      • Saving Your Drawing
    • Power Users
    • Issues and Features Coming Soon...
  • Python Curriculum
    • Unit 1: Drawing Basics
    • Unit 2: Drawing Algorithms
    • Unit 3: Functions and Events
  • ☕Java
  • Coming Soon...
  • Java Curriculum
    • Unit 1: Using Easy Draw Objects
    • Unit 2: If Statements and Drawings
    • Unit 3: Iteration and Drawings
    • Unit 4: Methods and Classes to Abstract Drawings
    • Tabs
Powered by GitBook
On this page
  • Easy Draw File
  • Dependencies

Was this helpful?

Export as PDF
  1. Python

Setup and Install

PreviousStudent Developed ArtNextStarter Template

Last updated 3 years ago

Was this helpful?

Easy Draw is not on PyPI just yet, so you cannot pip install it. To use it you will need the easy_draw.py file which can be found and downloaded from GitHub.

Easy Draw File

Once you have the easy_draw.py file, you can include it in your project directory (the same folder as your project files).

Dependencies

The first and most important dependency required to use Easy Draw is Tkinter. Tkinter is a standard Python GUI toolkit. It should be installed on your system if you have Python installed as it is part of the standard distribution.

It you get an error like the following:

ImportError: No module named tkinter

You may need to install Tkinter on your system.

The second dependency required to use Easy Draw is PIL. PIL stands for Python Imaging Library and is a very popular library used to work with image file with Python code.

If you get an error like the following:

ImportError: No module named PIL

You may need to install PIL on your system.

🐍
https://github.com/MrMazzone/easy-draw/releases/download/v1.1.1/easy_draw.py
TkDocs Tutorial - Installing Tk
Logo
Installation
Logo