pip 是 Python 的模組套件管理工具,跟 JavaScript 的 npm 、PHP 的 Composer 類似,都是用來安裝管理第三方的函式庫。

查看版本

以下三種方式都會有相同的結果

pip --version

pip -V

python3 -m pip -V

列出模組安裝清單

pip list

pip freeze

pip freeze > requirements.txt

安裝模組

pip install <模組名>

pip install -r reqirements.txt
Last modified: 2023-02-11

Author

Comments

Write a Reply or Comment

Your email address will not be published.