ubuntu
undo apt-get or aptitude build-deps
Submitted by Sam Rose on Sat, 05/29/2010 - 21:34sudo aptitude markauto $(apt-cache showsrc YOUR_APP_NAME | grep Build-Depends: | sed -e 's/Build-Depends:\|,\|([^)]*)//g')
Install python-igraph Ubuntu 9.04 64 bit
Submitted by Sam Rose on Wed, 10/21/2009 - 21:05Download python-igraph nightly from http://code.google.com/p/igraph/downloads/list
tar xfvz the tar.gz your download
First, make sure you added the following line to your /etc/apt/sources.list:
deb http://cneurocvs.rmki.kfki.hu /packages/binary/
deb-src http://cneurocvs.rmki.kfki.hu /packages/source/
Invoke apt-get update as root to update the package list, then fetch the source code and let Ubuntu build a package:
apt-get build-dep igraph && apt-get -b source igraph
Install mercurial on ubuntu Jaunty 9.04
Submitted by Sam Rose on Tue, 10/20/2009 - 20:20$ sudo aptitude install python-dev python-virtualenv pythin-setuptools $ easy_install -U mercurial
Test with
$ hg -v
Should return:
hg -v
Mercurial Distributed SCM (version 1.3.1)
Copyright (C) 2005-2009 Matt Mackall <mpm@selenic.com> and others
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
basic commands:
add:
add the specified files on the next commit
annotate, blame:Install Ruby Gems on Ubuntu Intrepid 8.10
Submitted by Sam Rose on Sat, 01/24/2009 - 23:31Do this:
$ wget http://rubyforge.org/frs/download.php/45905/rubygems-1.3.1.tgz $ tar rubygems-1.3.1.tgz $ cd rubygems-1.3.1 $ sudo ruby setup.rb #you can do ruby setup.rb --help to see options $ sudo sudo ln -s /usr/bin/gem1.8 /usr/bin/gem $ sudo gem -v 1.3.1
Done!
