0

I am trying to run a pykml project on pycharm. I have installed pykml and xlml packages using easy_install command on OS X. However the lines

from lxml import etree
from pykml.parser import Schema
from pykml.factory import KML_ElementMaker as KML
from pykml.factory import GX_ElementMaker as GX

produce "Unresolved reference" error. I am positive I successfully installed lxml and pykml. Any help will be appreciated

CodeMonkey
  • 22,825
  • 4
  • 35
  • 75
emrahozkan
  • 193
  • 1
  • 3
  • 15

1 Answers1

0

You need to configure the correct interpreter path for the project and install the dependencies into that path.

Bob Dylan
  • 1,773
  • 2
  • 16
  • 27