You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since building VSCodium with the official version of pkg2appimage, when opening a terminal panel, we were/are getting the following error (VSCodium/vscodium#760):
Fatal Python error: init_fs_encoding: failed to get the Python codec of the filesystem encoding
That error is mostly due to the env variables: PYTHONHOME and PYTHONPATH.
To fix that issue, I had to remove those variables (VSCodium/vscodium#773) but overwriting AppRun with:
It's almost the same bash script as when union: true. I've removed the variables PYTHONHOME and PYTHONPATH.
I've also removed libunionpreload.so since, when present, VSCodium wasn't loading.
Is there another way to avoid to set those variables?
The text was updated successfully, but these errors were encountered:
Since building VSCodium with the official version of
pkg2appimage
, when opening a terminal panel, we were/are getting the following error (VSCodium/vscodium#760):That error is mostly due to the env variables:
PYTHONHOME
andPYTHONPATH
.To fix that issue, I had to remove those variables (VSCodium/vscodium#773) but overwriting AppRun with:
It's almost the same
bash
script as whenunion: true
. I've removed the variablesPYTHONHOME
andPYTHONPATH
.I've also removed
libunionpreload.so
since, when present, VSCodium wasn't loading.Is there another way to avoid to set those variables?
The text was updated successfully, but these errors were encountered: