Posts Tagged ‘python’


Procedure to Install Django, Python, SVN on your HostMonster shared web hosting account.

  1. First Login to your SSH Client(Putty) using your credentials.
  2. Python
    Create a directory named “python” where your Python executable will reside.
    mkdir pythonNow download ,extract, compile and then install the source for Python 2.7.1 (We are not using Python 3.1 because currently Django does not support Python 3 and won’t for at least a year)

    wget http://www.python.org/ftp/python/2.7.1/Python-2.7.1.tar.bz2
    tar -xjf Python-2.7.1.tar.bz2
    cd Python-2.7.1
    ./configure -prefix=$HOME/python
    make –j8 && make install
    

    make –j8 will speed up building as it will be executed in 8 concurrent threads. (more…)