8 lines
131 B
Python
8 lines
131 B
Python
|
import os
|
||
|
|
||
|
# Update the package lists
|
||
|
os.system('sudo apt update')
|
||
|
|
||
|
# Install KeePassXC
|
||
|
os.system('sudo apt install -y keepassxc')
|