Skip to content

Setup Canvas on Jupyter Lab

We will be using python canvas drawing library. Unlike turtle graphics the canvas library has many powerful drawing tools.

Python IPYCanvas Library

Jupyter Lab

We will be running this library from within a Jypyter lab.

Steps

Install conda Create a new conda environment Install Jupyter lab Start up Jupyter Test Canvas

Setup With Conda

1
2
3
4
conda env list
conda create -n turtle python=3.6
conda activate turtle
juypter lab
After you run the last command it will open a web browser.

References

Conda Documentation