python3 安装不了xlutils模块 安装提示nameError:name file in not defined错误

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3 安装不了xlutils模块 安装提示nameError:name file in not defined错误相关的知识,希望对你有一定的参考价值。

求解 。。。

另外还有其他读写Excel的方法么

参考技术A from tkinter import *
root = Tk()
messagebox.showwarning("open","dddddd")
root.mainloop()

python 3.0
这就么一段简单的程序,在python自带的IDLE中可以运行,在cmd下用python test.py运行时就提示上面的错误。请问怎么处理?
import threading

from time import sleep,ctime

loops=(4,2)

class MyThread(threading.Thread):

def __init__(self,func,args,name=''):

threading.Thread.__init__(self)

self.name=name

self.func=func

self.args=args

def run(self):

apply(self.func,self.args)

def loop(nloop,nsec):

print('start loop',nloop,'at:',ctime())

sleep(nsec)

print('loop',nloop,'done at:',ctime())

def main():

print('starting at:',ctime())

threads=[]

nloops=range(len(loops))

for i in nloops:

t=MyThread(loop,(i,loops[i]),loop.__name__)

threads.append(t)

for i in nloops:

threads[i].start()

for i in nloops:

threads[i].join()

print('all done at:',ctime())

if __name__=='__main__':

main()
参考技术B python 3.x还是缺少很多库的支持,是正常现象,可以尝试2.7

以上是关于python3 安装不了xlutils模块 安装提示nameError:name file in not defined错误的主要内容,如果未能解决你的问题,请参考以下文章

Python LXML模块死活安装不了怎么办

python操作excel

操作excel

excel操作

python3 安装 pip3 出现问题??distutils.core 不存在

为啥我在Ubuntu16.04上安装不了python3.6-dev