A Python library consisting of many (interdependent) dependent libraries, and if you upgrade only one, the versions may differ between the libraries and it may not work properly. Therefore, you may want to upgrade all at once, including dependencies.
How to upgrade at once including dependent libraries
pip install --upgrade --upgrade-strategy eager <package name>
pip install --upgrade --upgrade-strategy only-if-needed <package name>
will do.
https://docs.microsoft.com/ja-jp/python/api/overview/azure/ml/install?view=azure-ml-py https://www.it-swarm-ja.tech/ja/python/pip%E3%82%92%E4%BD%BF%E7%94%A8%E3%81%97%E3%81%A6%E4%BE%9D%E5%AD%98%E9%96%A2%E4%BF%82%E3%82%92%E3%82%A2%E3%83%83%E3%83%97%E3%82%B0%E3%83%AC%E3%83%BC%E3%83%89%E3%81%9B%E3%81%9A%E3%81%AB%E3%83%91%E3%83%83%E3%82%B1%E3%83%BC%E3%82%B8%E3%82%92%E3%82%A2%E3%83%83%E3%83%97%E3%82%B0%E3%83%AC%E3%83%BC%E3%83%89%E3%81%97%E3%81%BE%E3%81%99%E3%81%8B%EF%BC%9F/969608431/
Recommended Posts