I am attempting to run pulsar on a windows machine which I have successfully accomplished on other windows 7 machines but for some reason every time I try to run "paster serve server.ini" I get:
Traceback (most recent call last):
File "C:\Python27\Scripts\paster-script.py", line 9, in <module>
load_entry_point('pastescript==1.7.5', 'console_scripts', 'paster')()
File "C:\Python27\lib\site-packages\pastescript-1.7.5-py2.7.egg\paste\script\c
ommand.py", line 93, in run
commands = get_commands()
File "C:\Python27\lib\site-packages\pastescript-1.7.5-py2.7.egg\paste\script\c
ommand.py", line 135, in get_commands
plugins = pluginlib.resolve_plugins(plugins)
File "C:\Python27\lib\site-packages\pastescript-1.7.5-py2.7.egg\paste\script\p
luginlib.py", line 82, in resolve_plugins
pkg_resources.require(plugin)
File "build\bdist.win-amd64\egg\pkg_resources\__init__.py", line 920, in requi
re
File "build\bdist.win-amd64\egg\pkg_resources\__init__.py", line 788, in resol
ve
File "build\bdist.win-amd64\egg\pkg_resources\__init__.py", line 2915, in __co
ntains__
File "build\bdist.win-amd64\egg\pkg_resources\__init__.py", line 2528, in vers
ion
ValueError: ("Missing 'Version:' header and/or PKG-INFO file", wsgi-path [unknow
n version] (c:\pulsar-master))
I have attempted to find information on this in the paste documentation and stack exchange but I cannot figure out the source of the error. I am running python 2.7.9 and installed the dependencies using the:
easy_install paste wsgiutils PasteScript PasteDeploy webob six psutil
as stated in the pulsar documentation. Any help would be greatly appreciated.