InterviewSolution
| 1. |
For Some Users Import Libglade (or Gdk) Is Working And For Some Users It's Not? |
|
Answer» It's possible that at the top of your script you have #!/usr/bin/env PYTHON as the script interpreter line. This searches the path for python, instead of hardcoding it to particular PLACE, which is useful. However, some systems have been found with MULTIPLE versions of Python, ONE of which works with GTK1 and one of which only works with GTK2. Figure out which one is working for your users, and CHANGE their script interpreter or path to use that one. It's possible that at the top of your script you have #!/usr/bin/env python as the script interpreter line. This searches the path for python, instead of hardcoding it to particular place, which is useful. However, some systems have been found with multiple versions of Python, one of which works with GTK1 and one of which only works with GTK2. Figure out which one is working for your users, and change their script interpreter or path to use that one. |
|