Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!feeder.news-service.com!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python,': 0.01; 'python.': 0.04; 'extracted': 0.05; 'python': 0.08; 'directories?': 0.09; 'question:': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:80.91.229.12': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'received:lo.gmane.org': 0.09; 'setup.py': 0.09; 'gui': 0.13; '"python': 0.15; '3.2.1': 0.16; 'from:addr:paul': 0.16; 'install"': 0.16; 'pyxml': 0.16; 'received:dip.t-dialin.net': 0.16; 'received:t-dialin.net': 0.16; 'subject:server': 0.16; 'there...': 0.16; 'downloaded': 0.21; "doesn't": 0.22; 'header:In-Reply-To:1': 0.22; 'guess': 0.26; "i'm": 0.27; 'paul': 0.28; 'all,': 0.28; 'received:84': 0.28; 'problem': 0.28; 'server': 0.29; 'script.': 0.29; 'script': 0.29; 'navigate': 0.30; 'installation': 0.30; 'hi,': 0.32; 'installed': 0.32; 'app': 0.33; "can't": 0.33; 'there': 0.33; 'to:addr:python- list': 0.33; 'instead': 0.33; 'header:User-Agent:1': 0.34; 'follows:': 0.34; 'latter': 0.34; 'from:charset:iso-8859-1': 0.35; 'header:X-Complaints-To:1': 0.35; 'folder': 0.35; 'run': 0.37; 'but': 0.37; 'install': 0.37; 'two': 0.37; 'received:org': 0.38; 'subject:: ': 0.39; 'i.e.': 0.39; 'header:Mime-Version:1': 0.39; 'to:addr:python.org': 0.39; 'called': 0.40; 'setup': 0.40; 'might': 0.40; 'where': 0.40; 'your': 0.61; 'easy_install': 0.84; 'schrieb': 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: =?ISO-8859-1?Q?Paul_K=F6lle?= Subject: Re: Installing WebDAV server Date: Wed, 31 Aug 2011 10:52:45 +0200 References: <9c4trjFcfmU1@mid.individual.net> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: p54b9e425.dip.t-dialin.net User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:6.0) Gecko/20110812 Thunderbird/6.0 In-Reply-To: <9c4trjFcfmU1@mid.individual.net> X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 38 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1314780791 news.xs4all.nl 2443 [2001:888:2000:d::a6]:45831 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:12463 Hi, Am 30.08.2011 22:00, schrieb Fokke Nauta: > Hi all, > > I am completely new to Python, but I'm confronted with a problem I can't > solve. Welcome to python. > This is my question: [snip] > I installed Python 3.2.1 and extracted the packages PyWebDAV and PyXML. Now > I have a working Python app and 2 directories called PyWebDAV-0.9.4.1 and > PyXML-0.8.4. In the PyWebDAV README it says: > > Installation and setup of server can be as easy as follows: > > $ easy_install PyWebDAV > $ davserver -D /tmp -n -J > > But of course it doesn't work like that. When I start up Python GUI I see > the ">>>" prompt instead of the "$" prompt. But where do I place the two > directories? And there is no easy_install script in the PyXML-0.8.4 > directory, only a setup.py and ez_setup.py script. I guess the latter is the > one to use. But how? You dont install from "Python GUI", use normal cmd, navigate to the folder you downloaded PyXML and PyWebDAV and run "python setup.py install" (python.exe has to be in your PATH). Then you have to find the startup-script "davserver". Find your python installation directory and look into /Tools/Scripts, in my computer this is E:\python27\Tools\Scripts. PyXML and PyWebDAV get installed in the site-packages folder i.e. E:\python27\Lib/site-packages. You might have to look for "davserver" there... hth Paul