I'm trying to run program which requires PyAudio. I have 0.2.8 version but it requires 0.2.9 version. Terminal tells me to update my pip. After Doing also it shows my old Command only enter image description here
Asked
Active
Viewed 109 times
-1
-
Don't include images with text, try to include the text itself. – Cristian Ciupitu Feb 05 '17 at 05:37
1 Answers
0
You need to fix your setuptools:
wget https://bootstrap.pypa.io/ez_setup.py -O - | python
or
curl https://bootstrap.pypa.io/ez_setup.py | python

Diego Mora Cespedes
- 3,605
- 5
- 26
- 33
-
[Errno 13] Permission denied: '/usr/local/lib/python2.7/dist-packages/test-easy-install-5661.write-test' /usr/local/lib/python2.7/dist-packages/ Perhaps your account does not have write access to this directory? If the installation directory is a system-owned directory, you may need to sign in as the administrator or "root" account. If you do not have administrative – Team ONYX Dec 03 '16 at 20:54
-
sudo wget https://bootstrap.pypa.io/ez_setup.py -O - | python or sudo curl https://bootstrap.pypa.io/ez_setup.py | python – Diego Mora Cespedes Dec 03 '16 at 20:55
-
Error: Perhaps your account does not have write access to this directory? If the installation directory is a system-owned directory, you may need to sign in as the administrator or "root" account. If you do not have administrative access to this machine, you may wish to choose a different installation directory, preferably one that is listed in your PYTHONPATH environment variable. – Team ONYX Dec 03 '16 at 20:59
-
-
Run the command somewhere else, anywhere else, wherever you have write access. – Diego Mora Cespedes Dec 03 '16 at 21:03