【Python】pip安装时出现 Could not install packages due to an OSError: [Errno 13] Permission denied
·
项目场景:使用pip安装jupyterlab时出现错误:
pip安装jupyterlab:pip install jupyterlab
出错:
ERROR: Could not install packages due to an OSError: [Errno 13] Permission denied: 'c:\\python39\\Scripts\\pywin32_postinstall.py'
Consider using the `--user` option or check the permissions.
原因分析:
操作系统错误:没有权限,拒绝访问
解决方案:
报错信息中推荐使用 --user
命令,那我们不妨试试:pip install --user jupyterlab
就安装成功啦!
参考链接:
https://blog.csdn.net/weixin_42200352/article/details/115180098
更多推荐
已为社区贡献18条内容
所有评论(0)