Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sumumm/hexo-weibo-hot-search
https://github.com/sumumm/hexo-weibo-hot-search
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sumumm/hexo-weibo-hot-search
- Owner: sumumm
- Created: 2022-02-24T14:51:49.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-02-25T10:59:52.000Z (over 2 years ago)
- Last Synced: 2024-03-18T16:25:55.022Z (8 months ago)
- Language: Python
- Homepage: hexo-weibo-hot-search.vercel.app
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
```shell
pip list # 列出所有已经安装的第三方模块
pip freeze > requirements.txt # 生成 requirements.txt
pip install -r requirements.txt # 安装 requirements 中的模块
pip uninstall [-y] -r requirements.txt # 卸载 requirements 中的模块
pip show # 显示一个或多个已安装模块的信息,包括这个包的依赖关系
pip uninstall [-y] # 卸载指定模块, -y 表示不需要进行确认
```