近期练习flask写个blog,

安装flask扩展时

pip install Flask-WTF

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

如图所示

ERROR: Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: '/Librar...

 

这里报这个错,主要是因为权限不够 ,用下面的命令安装即可

pip install Flask-WTF --user

如上图所示

 

这样就安装成功了

ERROR: Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: '/Librar...

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-10-08
  • 2022-12-23
  • 2021-08-17
  • 2021-09-24
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-05-16
  • 2021-06-20
  • 2021-10-21
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案