I am Charmie

メモとログ

2013-01-01から1年間の記事一覧

Ubuntu: check package version before installation

$ apt-cache search libeigen3libeigen3-dev - lightweight C++ template library for linear algebralibeigen3-doc - eigen3 API documentation$ apt-cache show libeigen3-devPackage: libeigen3-dev...Source: eigen3Version: 3.0.5-1

Double commander on Ubuntu

Double commander is a two-panel style file manager. Since the Double commander is not default package, we first need to add repository as mentioned here. sudo add-apt-repository ppa:alexx2000/doublecmd sudo apt-get update sudo apt-get inst…

VTK on Ubuntu

VTK (http://www.vtk.org/) is a visualization library for C++ but has graph processing functions. Thus, I'll try VTK as well.if [ ! -f vtk-5.8.0.tar.gz ]; then wget http://www.vtk.org/files/release/5.8/vtk-5.8.0.tar.gzfiif [ ! -f vtkdata-5.…

GraphViz on ubuntu

I'm using Boost Graph Library (BGL) and looking for libraries/softwares that can visualize graph network obtained by using BGL. GraphViz is an open source graph visualization software. Fortunately, BGL has a function that outputs graph net…

PdfMod on Ubuntu

PdfMod is an application for modifying PDF. I used it to remove pages but we can re-order, rotate, etc.

Imagemagick on ubuntu

install imagemagick sudo apt-get install imagemagick install pdfimages sudo apt-get install poppler-utils

Eigen3 with CMake

Eigen3 is not detectable by CMake findpackage macro. One solution for this problem is to self-create a file FindEigen3.cmake that enables CMake to find Eigen3.see here.

Ubuntu setup: development environment

packages for building c/c++ sudo apt-get -yV install build-essential 2.packages for editor We can use favorite packages or IDEs. The reason why I use Kate is here. sudo apt-get -yV install kate konsole packages for CMake sudo apt-get -yV i…