Skip to content

Loading Data Virtuoso

Dimitris Kontokostas edited this page Jul 7, 2014 · 21 revisions

Install Virtuoso

Option 1: Standard distributions (note that it might be an old version)

# Debian-based systems
$sudo apt-get install virtuoso-opensource

Option 2: LOD2 stack packages (usually latest version) (See this page for more options)

# download the repository package 
$ wget http://stack.lod2.eu/lod2stable-repository.deb
# install the repository package 
$ sudo dpkg -i lod2stable-repository.deb
# update the repository database 
$ sudo apt-get update
# install lod2-virtuoso-opensource
$ sudo apt-get install lod2-virtuoso-opensource

Option 3: Build from source

# download the code
$ git clone https://github.com/openlink/virtuoso-opensource.git
$ cd virtuoso-opensource
# Build 
$ ./autogen.sh
$ ./configure # use --help for more installation options
$ make
$ make install

Clone this wiki locally