Save PyPlot figure as SVG file with text rendered as text, not path

Hi. According to the README, you can try the following snippet.

rcParams = PyPlot.PyDict(PyPlot.matplotlib."rcParams")
rcParams["svg.fonttype"] = "none"

Or, probably rc("svg", fonttype="none") may also work.