To upgrade all packages using pip with grep on Ubuntu Linux pip3 list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip3 install - ...
確定! 回上一頁