赞
踩
自己编写的python代码,在其他电脑使用的时候,不能确定其他电脑上是否已经安装需要使用的第三方库。如果没有安装,则在调用第三方库之前安装第三方库,然后再调用第三方库
''' Author: your name Date: 2021-03-31 16:58:02 LastEditTime: 2021-03-31 18:02:00 LastEditors: your name Description: In User Settings Edit FilePath: \Eddy_Compare_data\检测第三方库是否存在_如果不存在则导入库.py 在导入第三方库的时候, ''' import os libs = ['numpy'] #罗列需要使用的库名称,避免因为没有第三方库报错 url = r'https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/' #清华镜像网站 try: import numpy as np print('Input library successful') except ModuleNotFoundError: print('Failed SomeHow') for lib in libs: print("Start install {0}".format(lib)) os.system('pip install %s -i %s'%(lib,url)) print('{0} install successful'.format(lib)) print('All install successful ') import numpy as np for i in np.arange(10): print(i)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。