bob93 wrote: Fri Jun 23, 2023 2:43 amGrey wrote: Mon Jan 23, 2023 6:58 am...
But I should immediately note that I recently discussed the work of embedded extensions on one of the Russian forums. The bottom line is this: almost no one checks the operation of Inkscape extensions. As a result, everything works except for some extensions. A vivid example... how is it in the English version... it seems Extensions>>Render and then Gear or Foldable Box. And then it turns out that different users do not have some of the necessary PYTHON MODULES. For example, lxml or numpy.If you just need to draw, then all the tools and filters work. But if you, like me sometimes, have to use extensions, then you need to install Pip and then install the modules with the python -m pip install XXX command.
In the future, I may start stuffing modules into sfs. Usually everyone shouts that "security", "ugly" and so on
In addition, I recommend choosing a normal icon theme in the Inkscape settings, and not this nasty one, which is by defaultHi. I downloaded this package and I'm trying to get some extensions to work, mainly interpolate. Is that command meant to be used just as written in urvxt terminal? When I do that I get
Code: Select all
/usr/bin/python: No module named pip
What am I missing?
Alright, I now see that pip needs to be installed from ppm (python3-pip_20.0.2) to be able to run that command, and XXX is the module to be installed, such as cssselect, so one command would be
Code: Select all
python -m pip install cssselect