[Error report] Installing sqlmap in the python3.9 environment reports an error

Problem Description

报错内容:
missing one or more core extensions (‘ssl’, ‘sqlite3’) most likely because current version of Python has been built without appropriate dev packages

insert image description here

Cause Analysis:

One or more core extensions ('ssl', 'sqlite3') are missing most likely because the current version of Python was built without the appropriate development packages

I first try to replace the installation package of sqlmap, and then try

python3 sqlmap.py -h
python sqlmap.py -u

After trying, it still can’t be solved, and I found the root path of the python file, and ran the command with the root path, but still can’t solve it

Therefore, to a large extent, the python version does not match the sqlmap version. After uninstalling python3.9, re-download python3.8.9

Download link: python3.8.9 download

insert image description here

solution:

reinstall python
insert image description here

Then unzip sqlmap into the python root directory and open the cmd command window

python sqlmap.py -h

solve

insert image description here

Guess you like

Origin blog.csdn.net/weixin_48701521/article/details/131904853