Fixing "python

When you use "sqlmap --update" you receive this message: /usr/bin/env: ‘python’: No such file or directory

To fix it, only change "python" environment to "python3". You can create an environment called "python" to fix this issue too. The both options work.
This commit is contained in:
André Aguiar 2022-10-29 15:06:55 -03:00 committed by GitHub
parent c382321134
commit 5b80b595a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
"""
Copyright (c) 2006-2022 sqlmap developers (https://sqlmap.org/)