(Linux Tip?) Works for me, hopefully for you too:
If you're struggling to get an app working with an old graphics driver, you can try using an older version, but sometimes it doesn't always work with modern OS's.
In the terminal, open up the folder that the executable/launcher is in (mine was: cd /opt/[APP FOLDER]) and type the following:
LIBGL_ALWAYS_SOFTWARE=1 ./[APP NAME]
This forces software rendering on the app, so see if that works.
If it does work, (if installed) you can edit the text file [APP].desktop (in my case) with nano, gedit
etc (i.e nano/opt/[APP FOLDER]/[APP].desktop)
and drop in the following line:
/opt/[APP FOLDER]/virtualenv LIBGL_ALWAYS_SOFTWARE=1 [APP].desktop %f
'virtualenv' worked for me, although you may need to replace it with 'env, venv, pyenv, pyenv, virtualenvwrapper, pipenv' etc
env = environment variables. Here it's used to run a utility or command in a custom environment.
Hope this helps
#linux #apps #oldsoftware #textediting (...)