Python微信订餐小程序课程视频
https://blog.youkuaiyun.com/m0_56069948/article/details/122285951
Python实战量化交易理财系统
https://blog.youkuaiyun.com/m0_56069948/article/details/122285941
2.5 使用pip管理库
安装Python后会默认安装pip工具,该工具可以用来安装、升级和移除库。默认情况下 pip 将从[Python Package Index]https://pypi.org 处下载安装软件包。
pip 有许多子命令: “install”, “uninstall”, “freeze” 等等。下面我们来介绍一些比较重要且实用的pip命令。
2.5.1 安装、升级库(install)
通过指定包的名称来安装最新版本的包:
pip install novas
Collecting novas
Downloading novas-3.1.1.3.tar.gz (136kB)
Installing collected packages: novas
Running setup.py install for novas
Successfully inst