subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
print("\nInstalling dependencies...") deps = ["requests"] try: subprocess.check_call( [sys.executable, "-m", "pip", "install", "--quiet"] + deps + ["--break-system-packages"],- Confidence
- 86% confidence
- Finding
- subprocess.check_call( [sys.executable, "-m", "pip", "install", "--quiet"] + deps + ["--break-system-packages"], stdout=subprocess.DEVNULL,
