每次运行自动化脚本时,我都要确保安装了某个python软件包。例如,我运行
pip3 install --user pandas
多次。
第二次及以后的运行(已安装该软件包时)耗时惊人,大约7.8秒。
我该如何进行检查并且不做任何事更快?
我的pip3版本是9.0.1。
部分输出(第二次运行)是
Collecting pandas
Using cached ...
...
Installing collected packages: six, python-dateutil, numpy, pytz, pandas
Successfully installed numpy-1.16.1 pandas-0.24.1 python-dateutil-2.8.0 pytz-2018.9 six-1.12.0