Quote:
I am attempting to run EuroOffice with Language Tools Pro for grammar assistance however I receive errors pertaining to Python. Their suggestion was to unset both PythonHome and PythonPath. I am unsure how I might do this. Any advice?
I don't use Python often enough to care if it breaks the install.
[/b]
|
Don't be so sure. There are many packages that depend on Python. Enter
rpm -q --whatrequires python
and you will see a list of packages that directly depend on Python. Some of these are needed by other packages. PYTHONPATH and PYTHONHOME are empty on my system. What do
echo $PYTHONPATH
and
echo $PYTHONHOME
show on the terminal? You can try setting them to an empty string,
export PYTHONPATH=
export PYTHONHOME=
and see if other applications run without problems. You can reset them the same way.