INSTALLING TAHOE

This is the default procedure to install from source. It has been verified to work on Windows, Cygwin, Mac, Linux, and Solaris. It's likely to work on other platforms. For more details and for alternative installation procedures, please see install-details.html.

DEPENDENCIES

Prior to installing Tahoe the following must be installed:

  1. gcc including g++ (programming language)

    If you are building for Windows or for Cygwin (which are two different platforns), the Cygwin version of gcc will work (it can be used to build executable for either of those platforms).

  2. GNU make (build tool)
  3. Python including development headers i.e. "Python.h" (programming language)
  4. zope.interface (programming language extension)

    Note that Tahoe does not require the entire Zope package, merely the much smaller zope.interface component.

  5. Twisted (network and operating system integration library)

    Installing Twisted from the Twisted "sumo" source tarball works on all supported platforms.

  6. OpenSSL, including development headers (cryptography library)
  7. PyOpenSSL (secure transport layer)
  8. Crypto++, including development headers (cryptography library)
  9. pywin32

    This one is required only if you are installing on Windows native. (It is not required if you are installing on Linux, Mac, Solaris, Cygwin, or any other platform.)

GET THE SOURCE CODE

Tarballs of the source code are available at:

http://allmydata.org/source/tahoe/

INSTALL

Unpack the tarball and cd into the top-level directory.

Run make check-deps which verifies that all of the dependencies listed above are installed.

Run make to build Tahoe and some included libraries and install the tahoe executable into a subdirectory of the current directory named bin.

Run make test to verify that it built correctly and passes all tests.

RUN

Now you have the Tahoe source code installed and are ready to use it to form a decentralized filesystem. See running.html for instructions.