mbj4668 / pyang

An extensible YANG validator and converter in python
ISC License
530 stars 342 forks source link

warning: how to resolve!!! #817

Closed SysAdminOkuns closed 2 years ago

SysAdminOkuns commented 2 years ago

warning: failed to load external entity "/home/myuser/pyang/xslt/basename.xsl/basename.xsl" cannot parse /home/user/pyang/xslt/basename.xsl/basename.xsl

llhotka commented 2 years ago

What is the value of the environment variable PYANG_XSLT_DIR?

SysAdminOkuns commented 2 years ago

What is the value of the environment variable PYANG_XSLT_DIR?

Hello, thanks for your assistance. I tried export PYANG_XSLT_DIR=$HOME/pyang/xslt/basename.xsl in the .bashrc file but it didn't work. Let me know if there's a way around this.

llhotka commented 2 years ago

This variable has to point to the directory containing XSLT stylesheets, hence

export PYANG_XSLT_DIR=$HOME/pyang/xslt
SysAdminOkuns commented 2 years ago

Thanks