python
xkxsxkx
菜鸡研究生,在线求工作
展开
-
‘PdfFileWriter‘ object has no attribute ‘stream‘
首先借用github上的解答链接% python3 -m venv venv% source ./venv/bin/activate[venv] % pip install pypdf2==1.26.0[venv] % python test.py1.26.0[venv] % pip install pypdf2==1.27.3[venv] % python test.py1.27.3Traceback (most recent call last):File "test.py", l原创 2022-04-21 10:37:35 · 1448 阅读 · 0 评论 -
python 编写的 pdf 裁剪工具 删除空白页
到了写论文的日子,总是会有各种奇怪的需求出现,比如说,在你把word导成pdf后,会因为分页符,出现空白页,这时候老师又要说你态度不认真了,那么就有了下面这个工具#coding=utf-8import os, shutiltry: from PyPDF2 import PdfFileReader, PdfFileWriterexcept ImportError: # warning please use pip install pypdf2==1.26.0 # if us原创 2022-04-20 23:13:40 · 1555 阅读 · 0 评论 -
ubuntu 下使用matplotlib 出现TypeError: Couldn‘t find foreign struct converter for ‘cairo.Context‘解决方法
今天在ubuntu下使用python3的matplotlib画图时,出现了下面的问题TypeError: Couldn’t find foreign struct converter for ‘cairo.Context’能跳出窗口,但就是没有图片。原因什么的就不管了,直接上解决方法如果你使用的是python2.x.xsudo apt-get install python-gi-cairo使用python3.x.x的sudo apt-get install python3-gi-cairo原创 2020-09-08 14:56:54 · 1730 阅读 · 1 评论 -
使用python实现的一个latex转Mathml的命令行小工具(方便latex公式放到word里使用)
哇,又到了要写论文的时间,总是会有喜欢latex数学语法的同学,会烦恼怎么把latex的公式搞进word里。(word2019明明说好了支持latex语法的,但就是转换不出来,很难受)于是就有了下面的内容事前准备安装好python环境word2019(其他版本没实验过,应该都是可行的)pip install latex2mathmlmathml 获取latex的解析能力pip install pyperclippyperclip 方便将输出好的mathml直接复制到剪贴板上,原创 2020-06-21 16:56:22 · 2954 阅读 · 4 评论