I'm having a little trouble installing Nagare on Windows XP. I've
followed the instructions up to the point where I type:
nagare-admin.exe serve admin
In response I get the following error message:
Traceback (most recent call last):
File "C:\nagare\Scripts\nagare-admin-script.py", line 5, in <module>
from pkg_resources import load_entry_point
File "c:\nagare\lib\site-packages\setuptools-0.6c9-py2.6.egg
\pkg_resources.py", line 2562, in <module>
File "c:\nagare\lib\site-packages\setuptools-0.6c9-py2.6.egg
\pkg_resources.py", line 626, in require
File "c:\nagare\lib\site-packages\setuptools-0.6c9-py2.6.egg
\pkg_resources.py", line 524, in resolve
pkg_resources.DistributionNotFound: python-memcached
I would expect at this point that the Nagare server would start. Any
help would be greatly appreciated.
Regards Giles.
Documentation about Nagare installation seems to be slightly outdated
regarding virtualenv version, thanks for pointing that out. For our
dayly builds, we use virtualenv 1.4.3, but latest 1.4.5 is also known
to work.
Moreover, when installing on Windows there is a problem with 0.9.7.1
version of WebOb package nagare installation command :
<NAGARE_HOME>/bin/easy_install 'nagare[full]'
should be replaced with :
<NAGARE_HOME>/bin/easy_install 'WebOb==0.9.7'
<NAGARE_HOME>/bin/easy_install 'nagare[full]'
Regards,
Herve
On 31 jan, 09:49, Giles <google.20.gilesrobe...@spamgourmet.com>
wrote:
Thanks for the assistance.
Under Windows I'm assuming you're referring to the scripts directory
rather than the bin directory. I've done a clean install to c:\nagare
\ using virtualenv 1.4.5.
Running the command c:\nagare\Scripts>easy_install 'WebOb==0.9.7' I
get the following response:
error: Not a URL, existing file, or requirement spec: "'WebOb==0.9.7'"
I would expect at this point to get some messages saying that WebOb
has been installed.
Regards Giles.
You're right, I meant Scripts directory.
To install WebOb, simple quotes must be removed from install command,
my mistake. Once in the right directory, you run:
easy_install.exe WebOb==0.9.7
easy_install.exe nagare[full]
Cheers,
On 1 fév, 10:10, crumble <herve.coatan...@gmail.com> wrote:
> Hi Giles,
>
> Documentation about Nagare installation seems to be slightly outdated
> regarding virtualenv version, thanks for pointing that out. For our
> dayly builds, we use virtualenv 1.4.3, but latest 1.4.5 is also known
> to work.
Installation documentation updated:
http://www.nagare.org/trac/wiki/QuickStart
http://www.nagare.org/trac/wiki/NagareInstallation
Thanks a lot! That fixed it.
The documentation isn't quite fully updated. I've logged into the
wiki but can't see any edit links. The page http://www.nagare.org/trac/wiki/NagareInstallation
requires the following line:
<NAGARE_HOME>\Scripts\easy_install.exe nagare[full]
to be altered to:
<NAGARE_HOME>\Scripts\easy_install.exe WebOb==0.9.7
<NAGARE_HOME>\Scripts\easy_install.exe nagare[full]
Regards Giles.