On Aug 7, 3:04 pm, Peter Chant wrote:
> Robert Kern wrote:
> > You need to put main.py into the pphoto package.
>
> > $ mkdir pphoto/
> > $ mv main.py pphoto/
> > $ touch pphoto/__init__.py
>
> Thanks, it worked. Any ideas how to run the resulting scripts without
> installing or running as root?
On 2009-08-18 15:06 PM, Erik Vandamme wrote:
On Aug 7, 9:17 am, Robert Kern wrote:
On 2009-08-06 18:04, Peter Chant wrote:
Chaps,
any ideas, I'm floundering - I don't quite get it. I have the following
files, setup.py and main.py in a directory pphoto:
# more setup.py
from setuptools
On Aug 7, 9:17 am, Robert Kern wrote:
> On 2009-08-06 18:04, Peter Chant wrote:
>
>
>
> > Chaps,
>
> > any ideas, I'm floundering - I don't quite get it. I have the following
> > files, setup.py and main.py in a directory pphoto:
>
> > # more setup.py
> > from setuptools import setup, find_packag
Peter Chant wrote:
> Thanks, it worked. Any ideas how to run the resulting scripts without
> installing or running as root?
If you install as root, you should be able to run the scripts as normal
user. However, I don't recommend this approach since it could conflict
with your system Python packag
Robert Kern wrote:
> You need to put main.py into the pphoto package.
>
> $ mkdir pphoto/
> $ mv main.py pphoto/
> $ touch pphoto/__init__.py
>
Thanks, it worked. Any ideas how to run the resulting scripts without
installing or running as root?
Pete
--
http://www.petezilla.co.uk
--
http:/
On 2009-08-06 18:04, Peter Chant wrote:
Chaps,
any ideas, I'm floundering - I don't quite get it. I have the following
files, setup.py and main.py in a directory pphoto:
# more setup.py
from setuptools import setup, find_packages
setup(
name = "Pphoto",
version = "0.1",
packages
Chaps,
any ideas, I'm floundering - I don't quite get it. I have the following
files, setup.py and main.py in a directory pphoto:
# more setup.py
from setuptools import setup, find_packages
setup(
name = "Pphoto",
version = "0.1",
packages = find_packages(),
# other arguments he