From 5b80b595a2529f889a1241fdd15bfea059b71fa1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Aguiar?= Date: Sat, 29 Oct 2022 15:06:55 -0300 Subject: [PATCH] Fixing "python MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- sqlmap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlmap.py b/sqlmap.py index 7c7e14ebd..34b6a24b9 100755 --- a/sqlmap.py +++ b/sqlmap.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """ Copyright (c) 2006-2022 sqlmap developers (https://sqlmap.org/)