Installation & Quick Start - Safety 2
Last updated
Last updated
Safety 2 is the previous iteration of our industry-leading Python dependency scanner. Safety is the best way to check your Python dependencies for security vulnerabilities and other compliance risks. It's our swiss-army knife tool that can be used in a variety of ways and situations, from securing developer machines, to build pipelines and production systems.
Safety is available for . You can install Safety CLI directly from PyPi using the following pip command:
pip install safety
Once install, you can run a vulnerability scan on your Python dependencies in your current environment.
safety check --key <YOUR-API-KEY>
Or scan the dependencies in a particular requirements file:
safety check -r requirements.txt --key <YOUR-API-KEY>