How do I install Qolibri from source code?

Clash Royale CLAN TAG#URR8PPP up vote
1
down vote
favorite
Qolibri is a EPWING Dictionary/Book Viewer. The official site can be located here: http://qolibri.osdn.jp/
I'm trying to install 'qolibri-1.0.4.src.tar.gz'. Link is here: https://osdn.net/projects/qolibri/releases/29711
Picture of file's contents
I tried following the
instructions:
I installed Qt5 library. I couldn't find 'eblib'. I presume it's a library but I wasn't able to find it. The 'eblib' link does not work. I was given a different link but I don't know what to do with file.
In the terminal I changed directory into the file, I entered 'qmake', 'make'. Finally 'make install': I was given this
I looked in the file and the internet and I couldn't find a way to install this, it seems to work fine on Windows but I wouldn't know from first-hand experience. If anyone could please let me know how I can get Qolibri up and running that would be great.
Thank you for your time.
software-installation source-code
add a comment |Â
up vote
1
down vote
favorite
Qolibri is a EPWING Dictionary/Book Viewer. The official site can be located here: http://qolibri.osdn.jp/
I'm trying to install 'qolibri-1.0.4.src.tar.gz'. Link is here: https://osdn.net/projects/qolibri/releases/29711
Picture of file's contents
I tried following the
instructions:
I installed Qt5 library. I couldn't find 'eblib'. I presume it's a library but I wasn't able to find it. The 'eblib' link does not work. I was given a different link but I don't know what to do with file.
In the terminal I changed directory into the file, I entered 'qmake', 'make'. Finally 'make install': I was given this
I looked in the file and the internet and I couldn't find a way to install this, it seems to work fine on Windows but I wouldn't know from first-hand experience. If anyone could please let me know how I can get Qolibri up and running that would be great.
Thank you for your time.
software-installation source-code
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
Qolibri is a EPWING Dictionary/Book Viewer. The official site can be located here: http://qolibri.osdn.jp/
I'm trying to install 'qolibri-1.0.4.src.tar.gz'. Link is here: https://osdn.net/projects/qolibri/releases/29711
Picture of file's contents
I tried following the
instructions:
I installed Qt5 library. I couldn't find 'eblib'. I presume it's a library but I wasn't able to find it. The 'eblib' link does not work. I was given a different link but I don't know what to do with file.
In the terminal I changed directory into the file, I entered 'qmake', 'make'. Finally 'make install': I was given this
I looked in the file and the internet and I couldn't find a way to install this, it seems to work fine on Windows but I wouldn't know from first-hand experience. If anyone could please let me know how I can get Qolibri up and running that would be great.
Thank you for your time.
software-installation source-code
Qolibri is a EPWING Dictionary/Book Viewer. The official site can be located here: http://qolibri.osdn.jp/
I'm trying to install 'qolibri-1.0.4.src.tar.gz'. Link is here: https://osdn.net/projects/qolibri/releases/29711
Picture of file's contents
I tried following the
instructions:
I installed Qt5 library. I couldn't find 'eblib'. I presume it's a library but I wasn't able to find it. The 'eblib' link does not work. I was given a different link but I don't know what to do with file.
In the terminal I changed directory into the file, I entered 'qmake', 'make'. Finally 'make install': I was given this
I looked in the file and the internet and I couldn't find a way to install this, it seems to work fine on Windows but I wouldn't know from first-hand experience. If anyone could please let me know how I can get Qolibri up and running that would be great.
Thank you for your time.
software-installation source-code
software-installation source-code
edited Mar 22 at 20:29
asked Mar 22 at 17:16
Stati
63
63
add a comment |Â
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
0
down vote
You can install EB library from repository:
sudo apt-get install libeb16-dev eb-utils eb-doc
Then you can compile and install qolibri with the following actions:
sudo apt-get install build-essential qt4-qmake libqt4-dev
cd ~/Downloads
wget http://acc.dl.osdn.jp/qolibri/29711/qolibri-1.0.4.src.tar.gz
tar -xzf qolibri-1.0.4.src.tar.gz
cd qolibri-1.0.4.src
qmake
make
sudo make install
After these steps you can launch qolibri.
For your information - Ubuntu also has EBView (EPWING dictionary viewer) in the repository, you can install it with
sudo apt-get install ebview
add a comment |Â
up vote
-1
down vote
The page mentioned in the "instructions" was closed long thime ago. Only the link below is alive still.
Try this:
EB Library - ftp://ftp.sra.co.jp/pub/misc/eb/eb-4.4.3.tar.bz2
I downloaded the file. I have no idea what to do with it. You wouldn't happen to have the command? I used 'sudo apt-get install Qt5-default' to install Qt5. How do I install this EB library? Thank you for help!
â Stati
Mar 22 at 18:45
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
You can install EB library from repository:
sudo apt-get install libeb16-dev eb-utils eb-doc
Then you can compile and install qolibri with the following actions:
sudo apt-get install build-essential qt4-qmake libqt4-dev
cd ~/Downloads
wget http://acc.dl.osdn.jp/qolibri/29711/qolibri-1.0.4.src.tar.gz
tar -xzf qolibri-1.0.4.src.tar.gz
cd qolibri-1.0.4.src
qmake
make
sudo make install
After these steps you can launch qolibri.
For your information - Ubuntu also has EBView (EPWING dictionary viewer) in the repository, you can install it with
sudo apt-get install ebview
add a comment |Â
up vote
0
down vote
You can install EB library from repository:
sudo apt-get install libeb16-dev eb-utils eb-doc
Then you can compile and install qolibri with the following actions:
sudo apt-get install build-essential qt4-qmake libqt4-dev
cd ~/Downloads
wget http://acc.dl.osdn.jp/qolibri/29711/qolibri-1.0.4.src.tar.gz
tar -xzf qolibri-1.0.4.src.tar.gz
cd qolibri-1.0.4.src
qmake
make
sudo make install
After these steps you can launch qolibri.
For your information - Ubuntu also has EBView (EPWING dictionary viewer) in the repository, you can install it with
sudo apt-get install ebview
add a comment |Â
up vote
0
down vote
up vote
0
down vote
You can install EB library from repository:
sudo apt-get install libeb16-dev eb-utils eb-doc
Then you can compile and install qolibri with the following actions:
sudo apt-get install build-essential qt4-qmake libqt4-dev
cd ~/Downloads
wget http://acc.dl.osdn.jp/qolibri/29711/qolibri-1.0.4.src.tar.gz
tar -xzf qolibri-1.0.4.src.tar.gz
cd qolibri-1.0.4.src
qmake
make
sudo make install
After these steps you can launch qolibri.
For your information - Ubuntu also has EBView (EPWING dictionary viewer) in the repository, you can install it with
sudo apt-get install ebview
You can install EB library from repository:
sudo apt-get install libeb16-dev eb-utils eb-doc
Then you can compile and install qolibri with the following actions:
sudo apt-get install build-essential qt4-qmake libqt4-dev
cd ~/Downloads
wget http://acc.dl.osdn.jp/qolibri/29711/qolibri-1.0.4.src.tar.gz
tar -xzf qolibri-1.0.4.src.tar.gz
cd qolibri-1.0.4.src
qmake
make
sudo make install
After these steps you can launch qolibri.
For your information - Ubuntu also has EBView (EPWING dictionary viewer) in the repository, you can install it with
sudo apt-get install ebview
edited Mar 23 at 9:14
answered Mar 23 at 9:03
N0rbert
16k33275
16k33275
add a comment |Â
add a comment |Â
up vote
-1
down vote
The page mentioned in the "instructions" was closed long thime ago. Only the link below is alive still.
Try this:
EB Library - ftp://ftp.sra.co.jp/pub/misc/eb/eb-4.4.3.tar.bz2
I downloaded the file. I have no idea what to do with it. You wouldn't happen to have the command? I used 'sudo apt-get install Qt5-default' to install Qt5. How do I install this EB library? Thank you for help!
â Stati
Mar 22 at 18:45
add a comment |Â
up vote
-1
down vote
The page mentioned in the "instructions" was closed long thime ago. Only the link below is alive still.
Try this:
EB Library - ftp://ftp.sra.co.jp/pub/misc/eb/eb-4.4.3.tar.bz2
I downloaded the file. I have no idea what to do with it. You wouldn't happen to have the command? I used 'sudo apt-get install Qt5-default' to install Qt5. How do I install this EB library? Thank you for help!
â Stati
Mar 22 at 18:45
add a comment |Â
up vote
-1
down vote
up vote
-1
down vote
The page mentioned in the "instructions" was closed long thime ago. Only the link below is alive still.
Try this:
EB Library - ftp://ftp.sra.co.jp/pub/misc/eb/eb-4.4.3.tar.bz2
The page mentioned in the "instructions" was closed long thime ago. Only the link below is alive still.
Try this:
EB Library - ftp://ftp.sra.co.jp/pub/misc/eb/eb-4.4.3.tar.bz2
answered Mar 22 at 18:09
trythis
1
1
I downloaded the file. I have no idea what to do with it. You wouldn't happen to have the command? I used 'sudo apt-get install Qt5-default' to install Qt5. How do I install this EB library? Thank you for help!
â Stati
Mar 22 at 18:45
add a comment |Â
I downloaded the file. I have no idea what to do with it. You wouldn't happen to have the command? I used 'sudo apt-get install Qt5-default' to install Qt5. How do I install this EB library? Thank you for help!
â Stati
Mar 22 at 18:45
I downloaded the file. I have no idea what to do with it. You wouldn't happen to have the command? I used 'sudo apt-get install Qt5-default' to install Qt5. How do I install this EB library? Thank you for help!
â Stati
Mar 22 at 18:45
I downloaded the file. I have no idea what to do with it. You wouldn't happen to have the command? I used 'sudo apt-get install Qt5-default' to install Qt5. How do I install this EB library? Thank you for help!
â Stati
Mar 22 at 18:45
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1018311%2fhow-do-i-install-qolibri-from-source-code%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password