-3

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?

Community
  • 1
  • 1
Lynob
  • 5,059
  • 15
  • 64
  • 114
  • 2
    Please make your question self-contained. – Kerrek SB Feb 18 '12 at 11:12
  • @paxdiablo not a programming question, but a python error question :P I should fix this error before i can start programming and start asking question about programming :) – Lynob Feb 18 '12 at 11:18
  • if you want me to delete it, tell me – Lynob Feb 18 '12 at 11:20
  • 1
    You should ask a real question: **explain your problem** and paste here a complete traceback, if you have one. Do not link us to your desktop screen shots. If you really think it could help add a note at the end with a link to that other related question, but that link cannot be a question here. If you don't take some the time for asking a good question, no one will ever give you a good answer. – Rik Poggi Feb 18 '12 at 11:27
  • Apologies to OP. I saw the errors for gnome-panel in the first graphic and thought that's what the problem was. The second graphic I could barely read :-) I've cleaned up the images and included them in the question rather than as separate links. – paxdiablo Feb 18 '12 at 12:10
  • @RikPoggi you are right sir, sorry – Lynob Feb 19 '12 at 00:40
  • @paxdiablo thanks sir, I apologies for being in a hurry :) – Lynob Feb 19 '12 at 00:41

2 Answers2

3

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.

Burhan Khalid
  • 169,990
  • 18
  • 245
  • 284
1

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.

tito
  • 12,990
  • 1
  • 55
  • 75