如果在我的Travis CI构建中,我想在本地卸载软件包并安装PyPI版本,如何修改.travis.yml
脚本以自动说“是”"到pip uninstall packagename
命令?
现在看来,我只有:
- pip uninstall packagename #remove local version
- pip install packagename #install the PyPI version
答案 0 :(得分:2)
展望pip help uninstall
,您会看到它需要--yes
标志。
您也可以考虑使用pip install -U packagename
。