Consider using the ‘--user‘ option or check the permissions 出现这种报错时

当你在系统命令窗口执行命令时(安装python的一个moudle时)出现Consider using the '--user' option or check the permissions报错时 是因为你没有执行这条命令的权限

例如 我是在系统命令行安装一个pymongo模块时出现同样报错

Consider using the ‘--user‘ option or check the permissions 出现这种报错时_第1张图片

系统显示缺少权限 并未安装成功

解决: 在指令中添加  --user

pip install --user pymongo==3.7.0

Consider using the ‘--user‘ option or check the permissions 出现这种报错时_第2张图片

添加后安装成功/ 

你可能感兴趣的:(python,c语言,nosql)