<div class="gmail_quote">On Sat, Oct 10, 2009 at 12:04 PM, Eric Coetzee <span dir="ltr">&lt;<a href="mailto:ericcoetzee@gmail.com">ericcoetzee@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
I am a PyQT newb trying to install on OS X.<br>
<br>
>From the docs, it seems I must first install SIP using the following commands:<br>
1. python configure.py<br>
2. make<br>
3. make install<br>
<br>
But is get &quot;permission denied&quot; during the make install.<br>
<br>
The documentation says &quot;Depending on your system you may require root or administrator privileges&quot;, so i tried<br>
 sudo -u admin make install<br>
<br>
which does not seem to accept the password. (admin is an account with admin privileges)<br>
I have tried to repair permissions and I&#39;ve also tried installing SIP while logged in as admin - same result.<br>
<br>
Can anyone help?<br>
<br>
output of step 1<br>
----------------------<br>
This is SIP 4.9 for Python 2.5.1 on darwin.<br>
The SIP code generator will be installed in<br>
/System/Library/Frameworks/Python.framework/Versions/2.5/bin.<br>
The SIP module will be installed in /Library/Python/2.5/site-packages.<br>
The SIP header file will be installed in<br>
/System/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5.<br>
The default directory to install .sip files in is<br>
/System/Library/Frameworks/Python.framework/Versions/2.5/share/sip.<br>
The platform/compiler configuration is macx-g++.<br>
Creating sipconfig.py...<br>
Creating top level Makefile...<br>
Creating sip code generator Makefile...<br>
Creating sip module Makefile...<br>
<br>
output of step 2<br>
---------------------<br>
cc -c -pipe -Os -w -DNDEBUG -I. -o main.o main.c<br>
cc -c -pipe -Os -w -DNDEBUG -I. -o transform.o transform.c<br>
cc -c -pipe -Os -w -DNDEBUG -I. -o gencode.o gencode.c<br>
cc -c -pipe -Os -w -DNDEBUG -I. -o export.o export.c<br>
cc -c -pipe -Os -w -DNDEBUG -I. -o heap.o heap.c<br>
cc -c -pipe -Os -w -DNDEBUG -I. -o parser.o parser.c<br>
cc -c -pipe -Os -w -DNDEBUG -I. -o lexer.o lexer.c<br>
c++ -headerpad_max_install_names -o sip main.o transform.o gencode.o export.o heap.o parser.o lexer.o<br>
cc -c -pipe -fPIC -Os -w -DNDEBUG -I. -I/System/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -o siplib.o siplib.c<br>
cc -c -pipe -fPIC -Os -w -DNDEBUG -I. -I/System/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -o apiversions.o apiversions.c<br>
cc -c -pipe -fPIC -Os -w -DNDEBUG -I. -I/System/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -o descriptors.o descriptors.c<br>
cc -c -pipe -fPIC -Os -w -DNDEBUG -I. -I/System/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -o qtlib.o qtlib.c<br>
cc -c -pipe -fPIC -Os -w -DNDEBUG -I. -I/System/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -o threads.o threads.c<br>
cc -c -pipe -fPIC -Os -w -DNDEBUG -I. -I/System/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -o objmap.o objmap.c<br>
c++ -c -pipe -fPIC -Os -w -DNDEBUG -I. -I/System/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -o bool.o bool.cpp<br>
c++ -headerpad_max_install_names -bundle -undefined dynamic_lookup -o sip.so siplib.o apiversions.o descriptors.o qtlib.o threads.o objmap.o bool.o<br>
<br>
output of step 3<br>
---------------------<br>
cp -f sip /System/Library/Frameworks/Python.framework/Versions/2.5/bin/sip<br>
cp: /System/Library/Frameworks/Python.framework/Versions/2.5/bin/sip: Permission denied<br>
make[1]: *** [install] Error 1<br>
make: *** [install] Error 2<br>
<br>
output of step 3 with sudo<br>
-------------------------------------<br>
Password:<br>
Sorry, try again.<br>
<br>
<br>
<br>
_______________________________________________<br>
PyQt mailing list    <a href="mailto:PyQt@riverbankcomputing.com" target="_blank">PyQt@riverbankcomputing.com</a><br>
<a href="http://www.riverbankcomputing.com/mailman/listinfo/pyqt" target="_blank">http://www.riverbankcomputing.com/mailman/listinfo/pyqt</a><br>
</blockquote></div><br><div><br></div><div>Your third step has to be executed as:</div><div><br></div><div>sudo make install</div><div><br></div><div><br></div><div>Hope this helps.</div><div><br></div><div>Mel</div>