I have a jenkins server open and I'm attempting to sudo install:
sudo apt-get install libsqlite3-dev
Because I am using a pipeline that runs a python script, whereby this script would return the following error:
builtins.ModuleNotFoundError: No module named '_sqlite3'
Online articles have suggested to sudo install the package above. However, I would need root-privileges to do so.
I have installed the ssh-server
plugin within jenkins and jenkins-cli.jar
, is there a way to install the package with any of these two options, or an easier alternative?