[Tutor] installing where does my money go
Emile van Sebille
emile at fenx.com
Fri Apr 8 02:34:47 CEST 2011
On 4/7/2011 2:45 PM Ben Teeuwen said...
> Then I added this to setup.py:
> #!/usr/bin/python
The normal way to run setup like this is:
python setup.py install
setup.py typically installs based on the environment your target python
version provides. You can have multiple python versions installed on
the same machine and can run setup.py from each version.
>
> This is where I end:
> bteeuwen at Ben-3 ~/Sites/wdmmg]$./setup.py
> /System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/distutils/dist.py:266: UserWarning: Unknown distribution option: 'paster_plugins'
> warnings.warn(msg)
> usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
--------------------------------^^^^
You're missing the command -- try install
hth,
Emile
> or: setup.py --help [cmd1 cmd2 ...]
> or: setup.py --help-commands
> or: setup.py cmd --help
>
> Anyone any advice where to look for answers? Thx!!
>
More information about the Tutor
mailing list