문제

I asked this question 4 days ago.

Now, when I open a terminal, I see this:

enter image description here

and this:

enter image description here

Is it related to the initial problem i had, or it a python and virtualenv issue?

도움이 되었습니까?

해결책

Stop using su and sudo to run virtualenv. You need to run virtualenv as your normal user. You have created the virtualenv with sudo which is why you are getting these errors.

다른 팁

Did you try to just give the write permission for you on the virtualenv private dir?

chmod +w -R ~/.virtualenv

That should resolve the Permission Denied issue.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top