#!/usr/bin/envpython
#-*-coding:UTF-8-*-
"""
@Item:Socketlearing
@Author:William
@Group:DEVGroup
@Date:2013-10-16
@Funtion:
"""
importsys,os,time,redis,traceback,json,threading,socket
fromcloud.hsnovncimportutils
fromcloudimportlog
LOG=log.get_logger(__na..
分类:
编程语言 时间:
2014-08-15 02:44:27
阅读次数:
315
使用ez_setup.py安装setuptools报错如下Traceback (most recent call last): File "httpservice.py", line 5, in import SimpleHTTPServer File "C:\Python27\lib\...
分类:
编程语言 时间:
2014-08-13 18:40:56
阅读次数:
277
>>> from django.template import Template>>> t = Template("My name is {{ my_name }}.")Traceback (most recent call last): File "C:\Python33\lib\site-pac...
分类:
其他好文 时间:
2014-08-04 21:09:40
阅读次数:
242
运行此命令,报错如下:
我是使用的xshell工具链接的服务器:#virt-manager
X11connectionrejectedbecauseofwrongauthentication.
Traceback(mostrecentcalllast):
File"/usr/share/virt-manager/virt-manager.py",line383,in<module>
main()
File"/usr/share/vi..
分类:
其他好文 时间:
2014-07-26 03:09:47
阅读次数:
414
在用webpy的db.insert()向postgres插入数据时出现 Traceback?(most?recent?call?last):
??File?"upgrade2.0.py",?line?170,?in?<module>
????copy_webservice()
??File?"upgrade2.0.py",?lin...
分类:
Web程序 时间:
2014-07-22 08:10:35
阅读次数:
569
问题
新装了CentOS 6.5系统,打算使用yum安装程序是出现了如下错误:
Loading mirror speeds from cached hostfile
Traceback (most recent call last):
File "/usr/bin/yum", line 29, in
yummain.user_main(sys.argv[1:], exit_c...
分类:
其他好文 时间:
2014-07-20 22:46:33
阅读次数:
381
问题:利用Python连接Oracle时报错,完整过程如下import cx_Oracleconn = cx_Oracle.connect('testma/dingjia@192.168.88.139:1521/orcl')Traceback (most recent call last): Fi....
分类:
数据库 时间:
2014-07-16 18:50:04
阅读次数:
2108
执行# python setup.py install 时发生如下错误Traceback (most recent call last): File "setup.py", line 6, in from setuptools import setup, find_packagesImpo...
分类:
编程语言 时间:
2014-07-13 00:57:46
阅读次数:
279
有时候需要在putty这样的图形终端中打开图形化的管理工具会出现下面的错误:
[root@node2 ~]# Traceback (most recent call last):
File "/usr/share/virt-manager/virt-manager.py", line 383, in
main()
File "/usr/share/virt-manager/virt-ma...
分类:
其他好文 时间:
2014-07-10 19:40:29
阅读次数:
196
生成器>>> def func1():... yield 0... yield 1... >>> a=func1()>>> a.next()0>>> a.next()1>>> a.next()Traceback (most recent call last): File "", l...
分类:
编程语言 时间:
2014-07-06 20:07:34
阅读次数:
251