9

I just installed cairosvg and it seems to have worked. If i try to install again it says:

$ pip install cairosvg
Requirement already satisfied(...)

But if I try to import it in python3, it delivers an ImportError:

>>>import cairosvg
Traceback(most recent call last):
(...)
ImportError: No Module named 'cairosvg'

Any ideas whats going wrong here? By the way, im trying to convert .svg files to .png ones, if there is a simpler possibility, feel free to tell me!

EliteKaffee
  • 109
  • 1
  • 2
  • 12

1 Answers1

8

install with pip3:

pip3 install cairosvg
Alireza Afzal Aghaei
  • 1,184
  • 10
  • 27