本文介绍了PyCharm:安装软件包失败的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要安装一些软件包.无论我尝试什么方向,情况只会变得更糟.

I need some packages to be installed.No matter what direction I try, it only gets worse.

请帮助.

推荐答案

您是否为用户检查了文件权限包?

Did you check file permissions pack for your user ?

您可以运行以下命令将目录(/Users/doekewartena/Library/Caches/pip)的所有权更改为当前用户(doekewartena):

You can run the below command to change the ownership of directory (/Users/doekewartena/Library/Caches/pip) to your current user (doekewartena) :

$ sudo chown -R doekewartena /Users/doekewartena/Library/Caches/pip

这篇关于PyCharm:安装软件包失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-31 23:12