如何在 Linux 中使用 pip 安装库?
步骤:
- 安装 pip:
sudo apt install python3-pip
- 安装库:
pip3 install <库名称>
示例:
要安装 Python 库 pandas
,请使用以下命令:
pip3 install pandas
其他提示:
- 使用
-r
或--requirement
参数来指定库的版本。例如,要安装 Python 3.x 库requests
,请使用pip3 install requests -r python3.x
。 - 使用
--user
参数来安装库,这将使用您的 Python 运行环境的 pip。 - 使用
pip3 list
来查看所有安装的库。 - 使用
pip3 uninstall <库名称>
来删除已安装的库。