The instructions in "Installing Tahoe" do not mention C compiler requirement. #701

Closed
opened 2009-05-12 01:01:43 +00:00 by nejucomo · 5 comments

On my recently created ubuntu server edition 9.04 install, I just followed the directions on "Installing Tahoe" found here:

http://allmydata.org/source/tahoe/trunk/docs/install.html

http://tahoe-lafs.org/trac/tahoe-lafs/browser/trunk/docs/quickstart.rst

Running "python setup.py build" ends with with:
distutils.errors.DistutilsError: Setup script exited with error: command 'gcc' failed with exit status 1

Add brief mention of a C compiler requirement to "Installing Tahoe" (or perhaps the "InstallDetails" "AdvancedInstall" wiki page).

On my recently created ubuntu server edition 9.04 install, I just followed the directions on "Installing Tahoe" found here: ~~<http://allmydata.org/source/tahoe/trunk/docs/install.html>~~ <http://tahoe-lafs.org/trac/tahoe-lafs/browser/trunk/docs/quickstart.rst> Running "python setup.py build" ends with with: distutils.errors.DistutilsError: Setup script exited with error: command 'gcc' failed with exit status 1 Add brief mention of a C compiler requirement to "Installing Tahoe" (or perhaps the "~~InstallDetails~~" "AdvancedInstall" wiki page).
nejucomo added the
documentation
minor
defect
1.4.1
labels 2009-05-12 01:01:43 +00:00
nejucomo added this to the undecided milestone 2009-05-12 01:01:43 +00:00
Author

I misunderstood the build failure, and the solution was to install the python development headers. I see that from the InstallDetails page, if I follow the DownloadDebianPackages link, then scroll to the section on building from source on debian, it mentions the python-dev package.

Perhaps the "Installing Tahoe" page could clarify that the full python C development environment is required?

Here's the relevant snippet:

twisted/runner/portmap.c:10:20: error: Python.h: No such file or directory
twisted/runner/portmap.c:14: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
twisted/runner/portmap.c:31: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
twisted/runner/portmap.c:45: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘PortmapMethods’
twisted/runner/portmap.c: In function ‘initportmap’:
twisted/runner/portmap.c:55: warning: implicit declaration of function ‘Py_InitModule’
twisted/runner/portmap.c:55: error: ‘PortmapMethods’ undeclared (first use in this function)
twisted/runner/portmap.c:55: error: (Each undeclared identifier is reported only once
twisted/runner/portmap.c:55: error: for each function it appears in.)
Traceback (most recent call last):
  File "setup.py", line 346, in <module>
    zip_safe=False, # We prefer unzipped for easier access.
  File "/usr/lib/python2.6/distutils/core.py", line 113, in setup
    _setup_distribution = dist = klass(attrs)
  File "/home/n/sandbox/allmydata-tahoe-1.4.1/setuptools-0.6c12dev.egg/setuptools/dist.py", line 219, in __init__
  File "/home/n/sandbox/allmydata-tahoe-1.4.1/setuptools-0.6c12dev.egg/setuptools/dist.py", line 243, in fetch_build_eggs
  File "/home/n/sandbox/allmydata-tahoe-1.4.1/setuptools-0.6c12dev.egg/pkg_resources.py", line 522, in resolve
  File "/home/n/sandbox/allmydata-tahoe-1.4.1/setuptools-0.6c12dev.egg/pkg_resources.py", line 758, in best_match
  File "/home/n/sandbox/allmydata-tahoe-1.4.1/setuptools-0.6c12dev.egg/pkg_resources.py", line 770, in obtain
  File "/home/n/sandbox/allmydata-tahoe-1.4.1/setuptools-0.6c12dev.egg/setuptools/dist.py", line 286, in fetch_build_egg
  File "/home/n/sandbox/allmydata-tahoe-1.4.1/setuptools-0.6c12dev.egg/setuptools/command/easy_install.py", line 452, in easy_install
  File "/home/n/sandbox/allmydata-tahoe-1.4.1/setuptools-0.6c12dev.egg/setuptools/command/easy_install.py", line 482, in install_item
  File "/home/n/sandbox/allmydata-tahoe-1.4.1/setuptools-0.6c12dev.egg/setuptools/command/easy_install.py", line 661, in install_eggs
  File "/home/n/sandbox/allmydata-tahoe-1.4.1/setuptools-0.6c12dev.egg/setuptools/command/easy_install.py", line 936, in build_and_install
  File "/home/n/sandbox/allmydata-tahoe-1.4.1/setuptools-0.6c12dev.egg/setuptools/command/easy_install.py", line 927, in run_setup
distutils.errors.DistutilsError: Setup script exited with error: command 'gcc' failed with exit status 1
I misunderstood the build failure, and the solution was to install the python development headers. I see that from the [InstallDetails](wiki/InstallDetails) page, if I follow the [DownloadDebianPackages](wiki/DownloadDebianPackages) link, then scroll to the section on building from source on debian, it mentions the python-dev package. Perhaps the "Installing Tahoe" page could clarify that the full python C development environment is required? Here's the relevant snippet: ``` twisted/runner/portmap.c:10:20: error: Python.h: No such file or directory twisted/runner/portmap.c:14: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token twisted/runner/portmap.c:31: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token twisted/runner/portmap.c:45: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘PortmapMethods’ twisted/runner/portmap.c: In function ‘initportmap’: twisted/runner/portmap.c:55: warning: implicit declaration of function ‘Py_InitModule’ twisted/runner/portmap.c:55: error: ‘PortmapMethods’ undeclared (first use in this function) twisted/runner/portmap.c:55: error: (Each undeclared identifier is reported only once twisted/runner/portmap.c:55: error: for each function it appears in.) Traceback (most recent call last): File "setup.py", line 346, in <module> zip_safe=False, # We prefer unzipped for easier access. File "/usr/lib/python2.6/distutils/core.py", line 113, in setup _setup_distribution = dist = klass(attrs) File "/home/n/sandbox/allmydata-tahoe-1.4.1/setuptools-0.6c12dev.egg/setuptools/dist.py", line 219, in __init__ File "/home/n/sandbox/allmydata-tahoe-1.4.1/setuptools-0.6c12dev.egg/setuptools/dist.py", line 243, in fetch_build_eggs File "/home/n/sandbox/allmydata-tahoe-1.4.1/setuptools-0.6c12dev.egg/pkg_resources.py", line 522, in resolve File "/home/n/sandbox/allmydata-tahoe-1.4.1/setuptools-0.6c12dev.egg/pkg_resources.py", line 758, in best_match File "/home/n/sandbox/allmydata-tahoe-1.4.1/setuptools-0.6c12dev.egg/pkg_resources.py", line 770, in obtain File "/home/n/sandbox/allmydata-tahoe-1.4.1/setuptools-0.6c12dev.egg/setuptools/dist.py", line 286, in fetch_build_egg File "/home/n/sandbox/allmydata-tahoe-1.4.1/setuptools-0.6c12dev.egg/setuptools/command/easy_install.py", line 452, in easy_install File "/home/n/sandbox/allmydata-tahoe-1.4.1/setuptools-0.6c12dev.egg/setuptools/command/easy_install.py", line 482, in install_item File "/home/n/sandbox/allmydata-tahoe-1.4.1/setuptools-0.6c12dev.egg/setuptools/command/easy_install.py", line 661, in install_eggs File "/home/n/sandbox/allmydata-tahoe-1.4.1/setuptools-0.6c12dev.egg/setuptools/command/easy_install.py", line 936, in build_and_install File "/home/n/sandbox/allmydata-tahoe-1.4.1/setuptools-0.6c12dev.egg/setuptools/command/easy_install.py", line 927, in run_setup distutils.errors.DistutilsError: Setup script exited with error: command 'gcc' failed with exit status 1 ```

The intent (since changeset:d45780faf085fb55) is that building Tahoe doesn't require g++ or Python.h. For that to work, however, requires that all the dependencies either happen to already be installed or else get installed from a binary egg at build time. What platform are you on, and what dependenc(y|ies) are failing to install from binaries?

The intent (since changeset:d45780faf085fb55) is that building Tahoe doesn't require `g++` or `Python.h`. For that to work, however, requires that all the dependencies either happen to already be installed or else get installed from a binary egg at build time. What platform are you on, and what dependenc(y|ies) are failing to install from binaries?

Oh, by the way, I see that our collection of binary eggs is commented-out in source:setup.cfg. Could you please try commenting-in the line that tells setup.py to look in a certain directory on the tahoe test grid for binary eggs?

The reason it is commented-out is that the tahoe test grid is too unreliable (it sometimes stalls for tens of minutes due to some transient storage server having disconnected without sending a TCP FIN packet, I think). If commenting that in fixes your build issue then maybe we could copy all those binary eggs over to the volunteer grid.

Oh, by the way, I see that our collection of binary eggs is commented-out in source:setup.cfg. Could you please try commenting-in the line that tells `setup.py` to look in a certain directory on the tahoe test grid for binary eggs? The reason it is commented-out is that the tahoe test grid is too unreliable (it sometimes stalls for tens of minutes due to some transient storage server having disconnected without sending a TCP FIN packet, I think). If commenting that in fixes your build issue then maybe we could copy all those binary eggs over to the volunteer grid.
tahoe-lafs added
packaging
and removed
documentation
labels 2009-12-04 05:23:15 +00:00
davidsarah commented 2011-08-25 04:19:02 +00:00
Owner

AdvancedInstall says: "Several of these [libraries]third-party use compiled C code, so they do require a compile step."

[AdvancedInstall](wiki/AdvancedInstall) says: "Several of these [libraries]third-party use compiled C code, so they do require a compile step."
There's also [wiki/FAQ#Q26_compile_error](wiki/FAQ#Q26_compile_error).
zooko added the
fixed
label 2014-09-05 00:20:43 +00:00
zooko closed this issue 2014-09-05 00:20:43 +00:00
Sign in to join this conversation.
No Milestone
No Assignees
3 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Reference: tahoe-lafs/trac-2024-07-25#701
No description provided.