由于[Errno 13]权限被拒绝错误而无法安装PyMySQL

时间:2019-10-07 12:55:15

标签: python pymysql

我正在尝试连接并下载pymysql以通过python创建数据库,但我这样做

pip install pymysql

进入终端,我收到以下错误消息

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

我对python还是很陌生,所以需要任何帮助,在此先感谢

1 个答案:

答案 0 :(得分:3)

尝试:

sudo pip install pymysql      # Installs for all the users.

或者:

pip install pymysql --user    # Installs the package for the current user only.
相关问题