how to install spdlog in ubuntu 14.04? [duplicate]
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
This question already has an answer here:
“Unable to locate package” while trying to install packages with APT
5 answers
naveen@naveen-VirtualBox:~$ sudo apt-get install libspdlog-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package libspdlog-dev
naveen@naveen-VirtualBox:~$
14.04
marked as duplicate by karel, Charles Green, Eric Carvalho, Kulfy, Elder Geek Feb 10 at 21:19
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
“Unable to locate package” while trying to install packages with APT
5 answers
naveen@naveen-VirtualBox:~$ sudo apt-get install libspdlog-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package libspdlog-dev
naveen@naveen-VirtualBox:~$
14.04
marked as duplicate by karel, Charles Green, Eric Carvalho, Kulfy, Elder Geek Feb 10 at 21:19
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
3
Looks like the libspdlog-dev package is only available in 16.04 onwards (packages.ubuntu.com/search?keywords=libspdlog-dev). 14.04 end of life is April 2019, so it may be worth considering an upgrade anyway?
– Broadsworde
Feb 10 at 13:19
add a comment |
This question already has an answer here:
“Unable to locate package” while trying to install packages with APT
5 answers
naveen@naveen-VirtualBox:~$ sudo apt-get install libspdlog-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package libspdlog-dev
naveen@naveen-VirtualBox:~$
14.04
This question already has an answer here:
“Unable to locate package” while trying to install packages with APT
5 answers
naveen@naveen-VirtualBox:~$ sudo apt-get install libspdlog-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package libspdlog-dev
naveen@naveen-VirtualBox:~$
This question already has an answer here:
“Unable to locate package” while trying to install packages with APT
5 answers
14.04
14.04
edited Feb 10 at 13:29
guiverc
5,17121723
5,17121723
asked Feb 10 at 13:07
NAVEEN AGRAWALNAVEEN AGRAWAL
61
61
marked as duplicate by karel, Charles Green, Eric Carvalho, Kulfy, Elder Geek Feb 10 at 21:19
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by karel, Charles Green, Eric Carvalho, Kulfy, Elder Geek Feb 10 at 21:19
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
3
Looks like the libspdlog-dev package is only available in 16.04 onwards (packages.ubuntu.com/search?keywords=libspdlog-dev). 14.04 end of life is April 2019, so it may be worth considering an upgrade anyway?
– Broadsworde
Feb 10 at 13:19
add a comment |
3
Looks like the libspdlog-dev package is only available in 16.04 onwards (packages.ubuntu.com/search?keywords=libspdlog-dev). 14.04 end of life is April 2019, so it may be worth considering an upgrade anyway?
– Broadsworde
Feb 10 at 13:19
3
3
Looks like the libspdlog-dev package is only available in 16.04 onwards (packages.ubuntu.com/search?keywords=libspdlog-dev). 14.04 end of life is April 2019, so it may be worth considering an upgrade anyway?
– Broadsworde
Feb 10 at 13:19
Looks like the libspdlog-dev package is only available in 16.04 onwards (packages.ubuntu.com/search?keywords=libspdlog-dev). 14.04 end of life is April 2019, so it may be worth considering an upgrade anyway?
– Broadsworde
Feb 10 at 13:19
add a comment |
1 Answer
1
active
oldest
votes
You can install package from 16.04 LTS on your 14.04 LTS manually with commands below:
cd ~/Downloads
wget http://mirrors.kernel.org/ubuntu/pool/universe/s/spdlog/libspdlog-dev_1.6-1_amd64.deb
sudo dpkg -i libspdlog-dev_1.6-1_amd64.deb
Then use its headers on compilation or launch test examples:
cp -ar /usr/share/doc/libspdlog-dev/example ~/libspdlog-example
cd ~/libspdlog-example
gunzip bench.cpp.gz
gunzip example.cpp.gz
make
mkdir logs
./example
./bench
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can install package from 16.04 LTS on your 14.04 LTS manually with commands below:
cd ~/Downloads
wget http://mirrors.kernel.org/ubuntu/pool/universe/s/spdlog/libspdlog-dev_1.6-1_amd64.deb
sudo dpkg -i libspdlog-dev_1.6-1_amd64.deb
Then use its headers on compilation or launch test examples:
cp -ar /usr/share/doc/libspdlog-dev/example ~/libspdlog-example
cd ~/libspdlog-example
gunzip bench.cpp.gz
gunzip example.cpp.gz
make
mkdir logs
./example
./bench
add a comment |
You can install package from 16.04 LTS on your 14.04 LTS manually with commands below:
cd ~/Downloads
wget http://mirrors.kernel.org/ubuntu/pool/universe/s/spdlog/libspdlog-dev_1.6-1_amd64.deb
sudo dpkg -i libspdlog-dev_1.6-1_amd64.deb
Then use its headers on compilation or launch test examples:
cp -ar /usr/share/doc/libspdlog-dev/example ~/libspdlog-example
cd ~/libspdlog-example
gunzip bench.cpp.gz
gunzip example.cpp.gz
make
mkdir logs
./example
./bench
add a comment |
You can install package from 16.04 LTS on your 14.04 LTS manually with commands below:
cd ~/Downloads
wget http://mirrors.kernel.org/ubuntu/pool/universe/s/spdlog/libspdlog-dev_1.6-1_amd64.deb
sudo dpkg -i libspdlog-dev_1.6-1_amd64.deb
Then use its headers on compilation or launch test examples:
cp -ar /usr/share/doc/libspdlog-dev/example ~/libspdlog-example
cd ~/libspdlog-example
gunzip bench.cpp.gz
gunzip example.cpp.gz
make
mkdir logs
./example
./bench
You can install package from 16.04 LTS on your 14.04 LTS manually with commands below:
cd ~/Downloads
wget http://mirrors.kernel.org/ubuntu/pool/universe/s/spdlog/libspdlog-dev_1.6-1_amd64.deb
sudo dpkg -i libspdlog-dev_1.6-1_amd64.deb
Then use its headers on compilation or launch test examples:
cp -ar /usr/share/doc/libspdlog-dev/example ~/libspdlog-example
cd ~/libspdlog-example
gunzip bench.cpp.gz
gunzip example.cpp.gz
make
mkdir logs
./example
./bench
edited Feb 10 at 14:56
answered Feb 10 at 14:37
N0rbertN0rbert
25.2k853118
25.2k853118
add a comment |
add a comment |
3
Looks like the libspdlog-dev package is only available in 16.04 onwards (packages.ubuntu.com/search?keywords=libspdlog-dev). 14.04 end of life is April 2019, so it may be worth considering an upgrade anyway?
– Broadsworde
Feb 10 at 13:19