When installing the package using python setup.py install, the package can be installed and imported, but running the tests or using SPARQL specific features of odml results in an AttributeError:
This is due to the fact, that setup.py install in comparison to pip install pulls down pre-releases as well. In this case it pulls down a pre-release of the pyparsing package, that currently elicits the above described error.
To make sure odml is correctly installed independent of installation method, the version of pyparsing needs to be pinned to version 2.4.7 until this issue is resolved.
When installing the package using
python setup.py install
, the package can be installed and imported, but running the tests or using SPARQL specific features of odml results in anAttributeError
:This is due to the fact, that
setup.py install
in comparison topip install
pulls down pre-releases as well. In this case it pulls down a pre-release of thepyparsing
package, that currently elicits the above described error.To make sure odml is correctly installed independent of installation method, the version of
pyparsing
needs to be pinned to version2.4.7
until this issue is resolved.