Difference between revisions of "Check if wx is installed twice"

From AMule Project FAQ
Jump to: navigation, search
(damn, new lines)
m (links)
Line 1: Line 1:
It may happen that you installed wx through distro packages and also through self-compilation process.<br>
+
It may happen that you installed [[wxWidgets|wx]] through distro packages and also through self-compilation process.<br>
To check if you have a system with wxWidgets installed twice, run:
+
To check if you have a system with [[wxWidgets]] installed twice, run:
  
 
''<pre>
 
''<pre>
Line 7: Line 7:
 
</pre>''
 
</pre>''
  
Only '''one''' of the two commands should give results. If none gives results (something like "No such file or directory") then you don't have wx installed at all. If both give some result, then you have wx installed twice. In this latter case, read [[How to uninstall wxWidgets]] to remove '''all''' wx installations and install wx again.
+
Only '''one''' of the two commands should give results. If none gives results (something like "No such file or directory") then you don't have [[wxWidgets|wx]] installed at all. If both give some result, then you have [[wxWidgets|wx]] installed twice. In this latter case, read [[How to uninstall wxWidgets]] to remove '''all''' [[wxWidgets|wx]] installations and install [[wxWidgets|wx]] again.

Revision as of 16:00, 26 July 2004

It may happen that you installed wx through distro packages and also through self-compilation process.
To check if you have a system with wxWidgets installed twice, run:

ls -l /usr/bin/wx*
ls -l /usr/local/bin/wx*

Only one of the two commands should give results. If none gives results (something like "No such file or directory") then you don't have wx installed at all. If both give some result, then you have wx installed twice. In this latter case, read How to uninstall wxWidgets to remove all wx installations and install wx again.