Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
I’m confused, are the steps under “On other systems, you can take the following steps:” on installing pip missing? Because after that it seems to point out that we need to install virtual_env, nothing about pip is mentioned.
I installed Django. I upload my django codes via ftp. Now i can see my codes but they didn’t work just see they as a file. How i can run this code on server?
hi, i installed django as per the instructions here. what further steps do i need to take in order to get my django code running from either my localhost or from my git repo (hosted on bitbucket)? can you provide me with the relevant steps to take. i have also installed git on my virtual server thanks in advance
@klimatima: Simply clone your git repo so you have the code on your droplet.
Actually I would install virtualenv in the canonical way:
sudo apt-get install python-pip
sudo apt-get install python-virtualenv
virtualenv example_env
source example_env/bin/activate
pip install Django
And just because on my system virtualenv.py from github fails!
When I try this command frans@frans-eMachines-D620:~$ python virtualenv.py example_env
I get the error message python: can’t open file ‘virtualenv.py’: [Errno 2] No such file or directory
I also had to install curl
I am sorry the solution my be obvious, but I am stumped.
This comment has been deleted