In this article, we will show you how to install Bottle. Let’s start by making a folder we can download the stuff we need to. mkdir ~/tmpdownload Let’s move into that folder… cd ~/tmpdownload Let’s download the files and unzip them… wget https://pypi.python.org/packages/source/b/bottle/bottle-0.11.6.tar.gz tar xzf bottle-*.tar.gz && rm bottle-*.tar.gz Now […]
In this article, we will show you how to install Flask. Let’s start by making a folder we can download the stuff we need to. mkdir ~/tmpdownload Let’s move into that folder… cd ~/tmpdownload Let’s download the files and unzip them… wget http://pypi.python.org/packages/source/F/Flask/Flask-0.9.tar.gz tar xzf Flask-*.tar.gz && rm Flask-*.tar.gz Now […]
In this article, we will show you how to setup Django in a virtual environment. 1.) Log into your account via SSH. 2.) Run the following to setup our export project name. Make sure you change “myproject” to the project name you wish to use. export PROJECTNAME="myproject" 3.) Run the following […]
In this article, we will show you the steps needed to install Django and setup a basic application. For this article, you will need SSH access to your account. 1) First we need to edit our bashrc file to add our python path. nano ~/.bashrc and add the following to […]
Your application requires a specific version of Python and you want know what version we have installed on our shared servers. This demo assumes you’ve already logged in to SiteAdmin 1) Click the Programming Center button from the left-hand menu, then click Python That’s it!