如何将Python第三方库改写为长尾关键词?
- 内容介绍
- 文章标签
- 相关推荐
本文共计547个文字,预计阅读时间需要3分钟。
第三方库网址:[https://pypi.org/](https://pypi.org/)
命令行安装:`.python.exe -m pip install (库名) -i 镜像源`
镜像源选择:- 清华:[https://pypi.tuna.tsinghua.edu.cn/simple](https://pypi.tuna.tsinghua.edu.cn/simple)- 阿里云:[http://mirrors.aliyun.com/pypi/simple/](http://mirrors.aliyun.com/pypi/simple/)- 中国科技大学:[https://pypi.mirrors.ustc.edu.cn/simple/](https://pypi.mirrors.ustc.edu.cn/simple/)
第三方库网址:
- pypi.org/
cmd:
- ./python.exe -m pip install (...) -i 镜像
临时使用镜像源:
- 清华:pypi.tuna.tsinghua.edu.cn/simple
- 阿里云:mirrors.aliyun.com/pypi/simple/
- 中国科技大学 pypi.mirrors.ustc.edu.cn/simple/
- 华中理工大学:pypi.hustunique.com/
- 山东理工大学:pypi.sdutlinux.org/
- 豆瓣:pypi.douban.com/simple/
- note:新版ubuntu要求使用pypi.tuna.tsinghua.edu.cn/simple[install]trusted-host=mirrors.aliyun.com
一、docx
- 该模块儿可以创建、修改Word(.docx)文件
- py3:安装命令: pip install python-docx
二、progressbar
- 该模块可以在控制台显示进度条,优点:一是进度信息在一行中显示;二是每次都能够动态擦除一行中上一次的内容。
- 安装命令:pip install progressbar2
本文共计547个文字,预计阅读时间需要3分钟。
第三方库网址:[https://pypi.org/](https://pypi.org/)
命令行安装:`.python.exe -m pip install (库名) -i 镜像源`
镜像源选择:- 清华:[https://pypi.tuna.tsinghua.edu.cn/simple](https://pypi.tuna.tsinghua.edu.cn/simple)- 阿里云:[http://mirrors.aliyun.com/pypi/simple/](http://mirrors.aliyun.com/pypi/simple/)- 中国科技大学:[https://pypi.mirrors.ustc.edu.cn/simple/](https://pypi.mirrors.ustc.edu.cn/simple/)
第三方库网址:
- pypi.org/
cmd:
- ./python.exe -m pip install (...) -i 镜像
临时使用镜像源:
- 清华:pypi.tuna.tsinghua.edu.cn/simple
- 阿里云:mirrors.aliyun.com/pypi/simple/
- 中国科技大学 pypi.mirrors.ustc.edu.cn/simple/
- 华中理工大学:pypi.hustunique.com/
- 山东理工大学:pypi.sdutlinux.org/
- 豆瓣:pypi.douban.com/simple/
- note:新版ubuntu要求使用pypi.tuna.tsinghua.edu.cn/simple[install]trusted-host=mirrors.aliyun.com
一、docx
- 该模块儿可以创建、修改Word(.docx)文件
- py3:安装命令: pip install python-docx
二、progressbar
- 该模块可以在控制台显示进度条,优点:一是进度信息在一行中显示;二是每次都能够动态擦除一行中上一次的内容。
- 安装命令:pip install progressbar2

