Python报错
文章平均质量分 77
Rubick_Y
这个作者很懒,什么都没留下…
展开
-
TypeError: object() takes no parameters Python报错
TypeError: object() takes no parameters这样的报错经常是和 class里的 __init__ 方法有关。 例如: __init__() 写成 _init_() 或者 __int__()原创 2018-03-26 16:03:35 · 471 阅读 · 0 评论 -
TypeError: argument of type 'EmptyList' is not iterable Python报错
TypeError: argument of type 'EmptyList' is not iterable出现这样的经常是 is 写成了 in. 例如:class Rlist(object): class EmptyList(object): def __len__(self): return 0def empty(s): ...原创 2018-03-26 16:20:59 · 1194 阅读 · 0 评论 -
Python 问题 OSError: raw write() returned invalid length 42 (should have been between 0 and 21)
在使用 Fabric3 编写自动化部署文件时,遇到SError: raw write() returned invalid length 42 (should have been between 0 and 21) 的 BUG. 错误信息如下:(venv) E:\Python_code\django\blogprojecttwo>fab deploy[www.rubic.win] ...原创 2018-04-12 01:16:38 · 3120 阅读 · 1 评论 -
Fabric 自动部署报错 Fatal error: sudo() received nonzero return code 1 while executing!
搭建 Django + nginx + gunicorn 网站,fabric 文件如下:from fabric.api import env, runfrom fabric.operations import sudoimport win_unicode_consolewin_unicode_console.enable()GIT_REPO = 'https://github...原创 2018-04-13 02:27:43 · 2195 阅读 · 0 评论 -
pip install出错:Cannot connect to proxy
pip install *** :Cannot connect to proxy在使用pip install 安装任何新的包都会出现下面错误:PS C:\WINDOWS\system32> pip install djangoLooking in indexes: http://pypi.douban.com/simpleCollecting django Retrying (R...原创 2018-10-13 17:12:53 · 13825 阅读 · 17 评论 -
win10下安装twisted遇到bug
cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -DWIN32=1 -Ic:\python\python35\include -Ic:\python\python35\include /Tcsrc/twisted/test/raiser.c /Fobuild\temp.win-amd64-3.5\Release\src/twisted/test/raiser....原创 2018-10-23 15:42:03 · 968 阅读 · 0 评论