You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If cinch-utils is installed in a non-standard location, the ccli command fails with the error
import ccli.driver
ImportError: No module named ccli.driver
The problem is, that ccli assumes that the python packages are installed in a standard location, and therefore can be easily imported. That is not always the case. To fix this, either install the packages into a standard location, even if ccli is not installed into a standard location, or add the path the modules are installed to the python path before importing them. The latter is the better option.
The text was updated successfully, but these errors were encountered:
If cinch-utils is installed in a non-standard location, the ccli command fails with the error
The problem is, that ccli assumes that the python packages are installed in a standard location, and therefore can be easily imported. That is not always the case. To fix this, either install the packages into a standard location, even if ccli is not installed into a standard location, or add the path the modules are installed to the python path before importing them. The latter is the better option.
The text was updated successfully, but these errors were encountered: