[PyOpenGL-Users] Re: More problems installing PyOpenGL on MacOSX
Brought to you by:
mcfletch
From: Dave R. <dr...@ca...> - 2002-05-04 16:34:38
|
> From: Peter Lundh <si...@te...> > > Thank you very much to all of you for your advice. It seems that I got a bit > further by installing the previous version of PyOpenGL - but I still got > stuck: > > > [localhost:~/desktop/pyopengl-1.5.7] peter% sudo python setup.py > > usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...] > > or: setup.py --help [cmd1 cmd2 ...] > > or: setup.py --help-commands > > or: setup.py cmd --help > > > > error: no commands supplied > > Can anyone suggest what it is that I'm doing wrong. > > Thanks > > -Peter > -- > Peter Lundh von Leithner > Sweden > E: si...@te... If that's your command above, you need to supply an action for the setup.py script: The following is the common usage: python setup.py build (see if everything goes ok) python setup.py install HTH, DAve |