subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
req = os.path.join( os.path.dirname(os.path.abspath(__file__)), "requirements.txt" ) subprocess.check_call([sys.executable, "-m", "pip", "install", "-r", req, "-q"]) def main():- Confidence
- 96% confidence
- Finding
- subprocess.check_call([sys.executable, "-m", "pip", "install", "-r", req, "-q"])
