宝塔面板装python3,并且,使用py实现pdf转word
宝塔面板装py3
直接使用老哥的教程
https://blog.kieng.cn/848.html
py3自带了pip3,也无需配置环境变量。使用的时候,使用pip3来操作。
配置系统环境变量(使用pip3命令打头,不要使用pip,所以无需配置了)
https://www.cnblogs.com/joeshang/p/12063359.html
pip3镜像源
Linux下更换镜像源
vi ~/.pip/pip.conf
修改 ~/.pip/pip.conf 文件, 没有则创建
[global]
timeout = 6000
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn
国内的其他镜像源
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) http://pypi.douban.com/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
py实现pdf转word使用另一个老哥的教程
https://www.cnblogs.com/wumingxiaoyao/p/8460973.html
知乎的教程好像更好
https://zhuanlan.zhihu.com/p/157650891
知乎的思路可以
https://zhuanlan.zhihu.com/p/34109582
作者做的演示代码
https://github.com/python-fan/pdf2word
更好的工具
python方面的 pdf2docx
pip3 list
pip3 show pdf2docx
找到位置
/usr/local/python3/lib/python3.6/site-packages
设置软链
https://www.cnblogs.com/lemonguess/p/15386537.html
https://segmentfault.com/a/1190000010392038
ln -s /usr/local/bin/python3 /usr/local/bin/paisen3
php,如何返回一个word文件,让浏览器直接下载
命令行模式
pdf2docx convert /www/wwwroot/106.53.210.133/api/pdf/pdf2docxtest/demo.pdf /www/wwwroot/106.53.210.133/api/word/demo.docx