Skip to content
Advertisement

Building Wireshark on Ubuntu from source [closed]

While trying to build Wireshark on Ubuntu 16.04 from source code, I encounter this error after running ./configure:

 error: /home/yoyo/anaconda3/bin/lrelease -qt=5 -version returned non-zero exit status

Any suggestions?

Advertisement

Answer

You appear to have python installed in your home directory via anaconda. Probably you set this via the PATH variable in your .bashrc (or the anaconda installer did)

Try editing .bashrc and removing it so you’re using ubu system defaults. Run the failing command manually to see if it would work or if you have another problem.

$ /usr/bin/lrelease -qt=5 -version 
lrelease version 5.5.1
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement