enso-org / dataframes

A library for working with tabular data in Luna.
https://luna-lang.org
MIT License
6 stars 5 forks source link

Fix python environment when being run from AppImage. (#110) #114

Closed mwu-tow closed 5 years ago

mwu-tow commented 5 years ago

AppImage sets bogus paths for PYTHONHOME and PYTHONPATH variables. That breaks Python interpreter in developer builds, like described in #110. Packaged builds were unaffected, as we were overwriting these paths anyway (as we know exactly what the package structure is like and where to look for python).

This PR adds a workaround -- remove bogus variables and allow local Python installation figure things on its own.