Grzegorz Makarewicz
Grzegorz Makarewicz
@mitya57 @unxed as suggested I changed the way the python plugin is built, without downloading anything from pypi or using external tools I have built a debian package and python...
merge before release
another fix #2435 - python included in packaging build
python plugin uses only packages from system, just run apt install python3-cffi
I don't plan to make any more changes. I generated a .deb package and installed it on the new machine, the plugin starts correctly.
Unfortunately I can't do anything about it, python has to load in the main thread of the program and the trick of starting it in the background didn't work. Even...
#2602 - not drag/drop but copy/paste between gnome and far2l
python3 -m venv env /devel/bin/python3 will create a virtual python environment, during the installation "virtual pip3" is also set up. After such python installation you can manually install missing packages,...
Before building with python enabled install requred package: sudo apt install python3-venv and build as described in README.md, eg: cmake .. -DCMAKE_BUILD_TYPE=Debug -DPYTHON=YES will create virtual env in install/Plugins/python/plug/python with...
I forgot about cffi requirements: sudo apt install libffi-dev