amohanta / spynner

Automatically exported from code.google.com/p/spynner
GNU General Public License v3.0
0 stars 0 forks source link

Error installing spynner on Windows #25

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. c:\dev\python python c:\dev\python\Lib\site-packages\spynner\setup.py install

What is the expected output? What do you see instead?
That shows: 
running install 
running build
running build_py
error: package directory 'spynner' does not exist (?)

What version of the product are you using? On what operating system?
In Windows XP. I'm using the python 2.7.

Please provide any additional information below.
In the first moment, I thought that there's no a folder named 'spynner' in my 
'site-packages' or '\Lib' directory. But that shows like the internal code is 
trying to reach a folder 'spynner' inside the Google domain. 

An excerpt inside the 'setup.py' code: 
...
setup(
    name="spynner",
    ...
    url="http://code.google.com/p/spynner",
    packages=[  
        "spynner",
    ],
    #install_requires=['pyqt'],
    ...
...

Original issue reported on code.google.com by rolim4co...@gmail.com on 29 Mar 2011 at 2:07

GoogleCodeExporter commented 9 years ago
packages=[  
    "spynner",
],

I think this is the usual way to refer to the code inside the package, isn't 
it?. You'll have to play a little bit with (maybe comparing with others 
setup.py) I have no Windows to check.

Original comment by tokland on 29 Mar 2011 at 2:14