Categories
Node.js

Node.js and NPM on Wheezy

It was a surprise, after some years in Ubuntu ground! Using a Debian stable release could take you in old times when running Linux ment hacking your own system. But it’s still this way, if you use it day-by-day.

With Ubuntu it’s a piece of cake to add Node.js and NPM with apt-get, while Debian Wheezy has no packages.

Categories
ubuntu

Quantal & ia32-libs

It seems obvious that a new stable ubuntu distro should work fine with new 64-bit PCs.

Anyway I have lost sometime to fix the correct installation of ia32-libs, a compatibility package that aims to help in amd64/i386 issues on Ubuntu.

Categories
Django

Install Django in Ubuntu

Just an easy recap to install django in a standard ubuntu environment:

  1. download the latest stable package from official page
  2. extract the package with: tar -xzvf Django-M.m.r.tar.gz [now: M=1, m=4, r=2]
  3. enter the folder with: cd Django-M.m.r
  4. run the command: sudo python setup.py install

At the end of the installation you can test it opening a python console with:

  • import django
  • django.get_version()