Draw a Christmas Tree Using Turtle in Python
Python 3.5+.
To install and run the program follow the instructions
$ git clone https://github.com/computationalcore/python-turtle-christmas
$ cd python-turtle-christmas
Create and start the virtual environment (Check section "Virtual Environments" for more details)
$ python3 -m venv venv
$ source venv/bin/activate
Install the requirements
$ pip install -r requirements.txt
To execute the cli (example)
$ python main.py
It is best practice during development to create an isolated
Python virtual environment using the
venv
standard library module. This will keep dependant Python packages from interfering
with other Python projects on your system.
Licensing for the project is defined in LICENSE.txt
.
This project uses a common permissive license, the MIT license.