D:\temp\sqlmap-master>python sqlmap.py
Traceback (most recent call last):
File "sqlmap.py", line 186, in <module>
main()
File "sqlmap.py", line 137, in main
file_ = os.path.relpath(file_, os.path.dirname(__file__))
File "C:\Python27\lib\ntpath.py", line 512, in relpath
% (path_prefix, start_prefix))
ValueError: path is on drive C:, start on drive D:
解决方法:
把控制台字符集设为gbk
chcp 936
problem solved!!!
Traceback (most recent call last):
File "sqlmap.py", line 186, in <module>
main()
File "sqlmap.py", line 137, in main
file_ = os.path.relpath(file_, os.path.dirname(__file__))
File "C:\Python27\lib\ntpath.py", line 512, in relpath
% (path_prefix, start_prefix))
ValueError: path is on drive C:, start on drive D:
解决方法:
把控制台字符集设为gbk
chcp 936
problem solved!!!