Could not install packages due to an EnvironmentError: [Errno 13] 权限不够

Ubuntu下安装库时,比如pip install tqdm
提示Could not install packages due to an EnvironmentError: [Errno 13] 权限不够: '/usr/local/lib/python3.5/dist-packages/tqdm' Consider using the --user option or check the permissions.
解决办法:
install后加上--user即可。
完整命令pip install --user tqdm

发布了79 篇原创文章 · 获赞 156 · 访问量 7万+

猜你喜欢

转载自blog.csdn.net/ZHUQIUSHI123/article/details/89631147