28.04.2020, 15:30
Just one comment. It seems to me that it is better to place those export lines
into ~/.bashrc which is executed for non-login shells instead of ~/.profile which is executed for login shells. The first seems to be more common use case of Hybrid. I did it in this way and had no issues with missing paths since then. But maybe it is safe to have them in both.
export LD_LIBRARY_PATH=/usr/local/lib
export PYTHONPATH=/usr/local/lib/python3.6/site-packages
into ~/.bashrc which is executed for non-login shells instead of ~/.profile which is executed for login shells. The first seems to be more common use case of Hybrid. I did it in this way and had no issues with missing paths since then. But maybe it is safe to have them in both.