背景
最近在工作中发现了一个错误,在执行多线程扫描脚本的时候频繁出现下面这个错误
HTTPConnectionPool(host=‘t.tips', port=80): Max retries exceeded with url: /index.php (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 24] Too many ope
如何解决python.exe: can’t open file ‘manage.py’: [Errno 2] No such file or directory这个问题
#本文章是记录我在开发一个基于python django的项目中的一些问题。本人新手小白,请多包涵。
使用pycharm新建一个Django工程。想新建一个app。在terminal中输入python manage.py startapp app时出现下列错误提示:python.exe: can’t open file ‘man
起因
今天使用 python os.mkdir创建目录时遇到的一个小问题:
feature_dir = os.path.join(os.getcwd(), 'system', 'feature')
if not os.path.exists(feature_dir):
os.mkdir(feature_dir)
结果提示错误: OSError: [Errno 2] No such file or directory: ‘/home/hyb/hyb_speech/2_word/applicat