最新 最热

[译]你在构建正确的软件吗?- 回归问题域

本文是《Hands-On Domain-Driven Design with .NET》一书的第一章

2020-09-24
1

deepin 任务栏消失问题

在使用了任务栏的一些插件后,如果卸载的话,可能会把dde-dock的一些依赖也卸载掉,所以会导致dock栏出现问题,在查看了很多帖子后无果,也重新安装了几次还是不行,解决方案:...

2020-09-23
1

压缩视频

问题对视频进行压缩并输出解决方案/// 压缩视频文件-(void)videoCompressionWithUrl:(NSURL *)url finish:(void(^)(NSURL * fileUrl))finishCallback{ NSS...

2020-09-21
1

[已解决]报错:have mixed types. Specify dtype option on import or set low_memory=False

from: https://blog.csdn.net/u010212101/article/details/78017924

2020-09-17
0

[已解决]报错:xlrd.compdoc.CompDocError: Workbook: size exceeds expected 17920 bytes; corrupt?

报错代码如下:filePath='test.xls'data=pd.read_excel(filePath)print(data.head())报错内容如下:Traceback (most recent call last): File "e:/PyCharm/Demo/TestFileDirectory...

2020-09-17
0

[已解决]报错Could not install packages due to an EnvironmentError

安装OpenCV过程中出现错误 代码:pip-conda install -i https://pypi.douban.com/simple/ opencv-python报错内容如下:Could not install packages due to an EnvironmentError: [Errno 13]...

2020-09-17
0

[已解决]报错UnicodeDecodeError

输出报错:UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc4 in position 220: in解决方案:将编码方式utf-8 修改为gb18030例如:requests.get(url,headers).content.decode('gb18......

2020-09-17
0

关于合并pdf文件出现的问题

输出端出现以下问题:PdfReadWarning: Xref table not zero-indexed. ID numbers for objects will be解决方案:import sysif not sys.warnoptions: import warnings warning...

2020-09-17
0

AttributeError: 'list' object has no attribute 'keys'

#encoding=utf-8import osresult = {}if os.path.exists("test.txt"): day_file = open("test.txt").read() day_file_list = day_file.split(" ") for i...

2020-09-17
0

解决Chunkize warning while installing gensim问题

问题:UserWarning: detected Windows; aliasing chunkize to chunkize_serial warnings.warn("detected Windows; aliasing chunkize to chunkize_serial")解决方案:在import ...

2020-09-16
1