python运行问题
心_kokoro
暂停更新
展开
-
python windows curses库安装教程
python windows curses库安装教程curses库不支持Windows操作系统,因此如果您用Windows操作系统并且确实需要用curses库,那需要手动安装。首先,进入这个网站cp39代表适用于python3.9,以此类推,32还是64自行根据系统选择。下载好之后,在终端输入pip install 刚下载好的文件名(注意目录跟虚拟环境)即可...原创 2020-12-28 19:09:38 · 7409 阅读 · 2 评论 -
KeyError: ‘Date‘错误
KeyError: 'Date'错误问题描述解决问题描述出现这个问题一般是用pandas处理数据的时候数据没对齐,如下图所示:解决reset_index()这个函数里有inplace参数,设置为True即可让数据归位df.reset_index(inplace=True)...原创 2020-11-28 22:05:12 · 8270 阅读 · 1 评论 -
python报错:module ‘subprocess‘ has no attribute ‘check_ouput‘
python报错:module 'subprocess' has no attribute 'check_ouput'原因解决方案原因遇到这个错误,说明所用的python版本中该api已舍弃解决方案import subprocess#data = subprocess.check_ouput(xxxxxx)#用下面的代码替换上面的 别忘记加capture_output用来捕获输出data = subprocess.run(xxxxxxx,capture_output = True).stdo原创 2020-11-13 22:25:23 · 1500 阅读 · 0 评论 -
python读取字符报错:‘utf-8‘ codec can‘t decode byte 0xbd in position 2: invalid start byte
python读取字符报错:'utf-8' codec can't decode byte 0xbd in position 2: invalid start byte原因解决方法原因utf-8只包含了部分汉字,导致解码时有些字节(比如0xbd)溢出。解决方法.decode('gbk').decode('gb2312')decode的码制换为gbk或gb2312即可。详细解释我觉得这篇文章很好。详解字符编码问题...原创 2020-11-13 22:09:31 · 5567 阅读 · 1 评论 -
tensorflow_core._api.v2.io.gfile has no attribute get_filesystem 问题
‘tensorflow_core._api.v2.io.gfile’ has no attribute ‘get_filesystem’链接: 参考博主在学习PyTorch官网Tensorboard的tutorial时,运行这段代码writer.add_embedding(features,metadata=class_labels,\label_img=images.unsqueeze(1))writer.close()时会出现如上问题尝试卸载tensorflow,创建新环境(只包含pytor原创 2020-06-28 15:04:12 · 988 阅读 · 0 评论 -
DLL load failed while importing win32api: 找不到指定的模块
DLL load failed while importing win32api: 找不到指定的模块将Lib\site-packages\pywin32_system32中这两个文件复制到C:\Windows\System32目录下原创 2020-11-03 21:34:40 · 7959 阅读 · 2 评论