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
However, when I run qira, it doesn't seem to import ipaddr in Python 2.7.
$ qira
Traceback (most recent call last):
File "/opt/qira/middleware/qira.py", line 6, in <module>
import ipaddr
ImportError: No module named ipaddr
This shouldn't be the case, importing ipaddr on a separate process works fine.
$ python2.7
Python 2.7.16 (default, Mar 11 2019, 18:59:25)
[GCC 8.2.1 20181127] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import ipaddr
>>>
The text was updated successfully, but these errors were encountered:
I don't know if this is an issue for my arch or not but I temporarily fixed it by adding sys.path.append('/usr/lib64/python2.7/site-packages') or by running sed -i '/import sys/c\import sys\nsys.path.append('/usr/lib64/python2.7/site-packages')/' middleware/qira.py.
Continuing from #234, I used the following script to build and package qira.
However, when I run qira, it doesn't seem to import
ipaddr
in Python 2.7.This shouldn't be the case, importing
ipaddr
on a separate process works fine.The text was updated successfully, but these errors were encountered: