You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
move all sudo commands to subprocess calls, which ask for sudo password each time, OR:
capture computer password at startup, hold throughout, use echo "password" | sudo -S ... to run commands as sudo automatically. but then we're holding computer passwords in memory. dodgy?
Windows:
require uac-admin on startup (doable with pyinstaller)
test that all privileges are actually given
The text was updated successfully, but these errors were encountered:
macOS:
echo "password" | sudo -S ...
to run commands as sudo automatically. but then we're holding computer passwords in memory. dodgy?Windows:
The text was updated successfully, but these errors were encountered: