14 lines
216 B
Python
14 lines
216 B
Python
import os
|
|
import json
|
|
|
|
|
|
modules=[]
|
|
|
|
|
|
with open("requirements.json", 'r') as f:
|
|
modules = json.load(f)
|
|
|
|
for module in modules:
|
|
os.system(f'pip3 install {module}')
|
|
|
|
os.system('python3 -m pipx install impacket') |