I understand that Stackoverflow is for help with code, but I figured I'd ask anyways.
I found from the post here that it is possible to put a .svg file into a tkinter window, but after days of searching, I still can't find any place where I could install cairo and rsvg from.
I am currently using Windows 10 with python 3.6.
EDIT:
I have found out how to install cairo and rsvg. Cairo is working but rsvg is not. I have managed to put SVGs in Tkinter with cairo and not rsvg, though. For anyone curious about this, you may want to check post out: Putting .SVG images into tkinter Frame.
Thanks in advance.
First, use
pip install pycairoUnfortunately, rsvg is unavailable for windows, but cairographics.org have a simple wrapper.
Save the following as rsvg.py in the same folder as your script:
In your script, do
from rsvg import *and when you need to use it, run: