Opened 16 years ago
Closed 16 years ago
#3877 closed task (invalid)
can't build egg for plugin
Reported by: | Owned by: | Russ Tyndall | |
---|---|---|---|
Priority: | high | Component: | TimingAndEstimationPlugin |
Severity: | blocker | Keywords: | waiting-for-feedback |
Cc: | Trac Release: | 0.11 |
Description
I think this may turn out to be more of a support request than a bug ticket. Therefore, this may not be the correct place to ask this question. So, advanced apologies, and thanks for any and all help.
For some reason, we can't build the egg for this plugin. We're running Python23, with setuptools ver 0.6c9.win32-py2.3, and Trac 0.11. For setuptools, we used an executable distribution, which seemed to install into the right directory without any problems, so I assume setuptools is running correctly. However, I don't have a way to test it, and our timeframe to have this running is limited.
Here's the error:
$ python setup.py bdist_egg Traceback (most recent call last): File "setup.py", line 3, in <module> from setuptools import setup ImportError: No module named setuptools
We've modified the first line of setup.py with the correct path to Python23, and we've added the correct path to setuptools in the machine's environment var path. Everything seems to be in order, but it's still not working. Can someone please give us a hand here?
thanks!
Attachments (0)
Change History (4)
comment:1 Changed 16 years ago by
Priority: | highest → high |
---|
comment:2 Changed 16 years ago by
comment:3 Changed 16 years ago by
Keywords: | waiting-for-feedback added |
---|---|
Type: | defect → task |
comment:4 Changed 16 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
No feedback since nov, assuming this is fixed, if not, please reopen
Is there any more error message (or a verbose flag you can set)? This is not something easily debugged from what you have provided. You might try opening a python shell (or ipython) and typing 'import setuptools' to see if you can import it there, or if you get this or a more explicit error.
Another approach might be to just python setup.py install to see if there are other error messages. (Based on what you have provided either there is an error in setuptools, or setuptools is not properly installed.)
At some point in the recent past there was a bug in the official setuptools release (I think version 6c7). I am not sure if you are experiencing this or a path problem. Further more it has been a very long time since I tried to do python with windows, so I wont be able to help clear up path issues there.
HTH, Russ