首页 > 其他分享 >执行dirmap的TypeError: start() takes 1 positional argument but 2 were given报错问题

执行dirmap的TypeError: start() takes 1 positional argument but 2 were given报错问题

时间:2023-02-12 23:02:16浏览次数:40  
标签:given takes argument start 报错 dirmap

dirmap.py版本v1.0,Python版本v3.8.5

执行dirmap报错:TypeError: start() takes 1 positional argument but 2 were given

解决方法:

卸载progressbar,重新安装progressbar2,防止导入同名模块:

python3 -m pip uninstall progressbar

python3 -m pip install progressbar2

再次执行dirmap即可正常运行。

 

标签:given,takes,argument,start,报错,dirmap
From: https://www.cnblogs.com/gaopei/p/17114933.html

相关文章