快捷搜索:  汽车  科技

python依赖包怎么一键安装(Python安装卸载依赖包的方法)

python依赖包怎么一键安装(Python安装卸载依赖包的方法)其中,使用–user,表示仅安装在当前用户下。pip3 install requests --userSuccessfully installed不过通过提示,得知加上--user选项,可以解决这个没有权限的问题1.安装先根据提示,加上--user后解决问题:

背景

最近打算通过Python脚本,获取一些网页的数据,需要使用到Python的requests库。

python依赖包怎么一键安装(Python安装卸载依赖包的方法)(1)

问题

通过pip3进行按照依赖包

pip3 install requests

报没有权限的错误

ERROR: Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: '/Library/Python/3.8' Consider using the `--user` option or check the permissions.

python依赖包怎么一键安装(Python安装卸载依赖包的方法)(2)

Permission denied

不过通过提示,得知加上--user选项,可以解决这个没有权限的问题

使用--user

1.安装

先根据提示,加上--user后解决问题:

pip3 install requests --user

python依赖包怎么一键安装(Python安装卸载依赖包的方法)(3)

Successfully installed

其中,使用–user,表示仅安装在当前用户下。

2.卸载

如果不想用这个安装的包,可以通过pip3 uninstall进行卸载

pip3 uninstall requests

python依赖包怎么一键安装(Python安装卸载依赖包的方法)(4)

Successfully uninstalled

使用sudo

1.安装

根据没有权限,加上sudo后获取root权限,亦可以解决问题:

sudo pip3 install requests

python依赖包怎么一键安装(Python安装卸载依赖包的方法)(5)

Successfully uninstalled

使用sudo,表示进行全局安装。

2.卸载

卸载也要加上sudo,否则没有权限卸载:

sudo pip3 uninstall requests

python依赖包怎么一键安装(Python安装卸载依赖包的方法)(6)

Successfully uninstalled

python依赖包怎么一键安装(Python安装卸载依赖包的方法)(7)

猜您喜欢: