したい pip install
with --upgrade
、Ansibleを使用。
構文は何ですか?
- name: install the package, force upgrade
pip:
name: <your package name>
state: latest
または:
- name: install the package, force reinstall to the latest version
pip:
name: <your package name>
state: forcereinstall
最終的にここで答えを見つけました: https://groups.google.com/forum/#!topic/ansible-project/a19JEpdXzck
これは構文です:
- name: install the package, force upgrade
pip:
name: <your package name>
extra_args: --upgrade
他のpythonバージョンのpipをアップグレードする必要がある場合は、executableパラメーターを使用できます。
- name: install the package, force upgrade
pip:
name: pip
executable: pip3
state: latest