InstallingVisTrailsOnUbuntu

From VistrailsWiki
Revision as of 19:22, 26 February 2007 by Cscheid (talk | contribs) (New page: When installing VisTrails on a Debian-based linux distribution (any variant using the apt package management system) the following commands must be issued as the root user or preceeded by ...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

When installing VisTrails on a Debian-based linux distribution (any variant using the apt package management system) the following commands must be issued as the root user or preceeded by sudo

Install Graphviz:

  • apt-get install graphviz

Install Python:

  • apt-get install python

Install Python Extensions:

  • apt-get install python-xml
  • apt-get install python-soappy

Install Qt 4.2.0 or above:

  • You can get the open source version for all platforms here
  • After downloading, you need to build the Qt library:
 * Run configure then make

Install PyQt4:

  • Note: The Python bindings for QT4 provided by the apt-get installation work only for QT 4.1
  • Download sip 4.5.2 here
 * sudo python configure.py
 * sudo make; make install
  • Download PyQt4.1.1 here
 * sudo python configure.py
 * sudo make; make install

Install MySQLdb (Python library allowing MySQL databases access):

  • apt-get install python-mysqldb

Install SciPy and NumPy

  • sudo apt-get install python-scipy (python-numpy is a dependency that is installed automatically by apt)