1👍
✅
You should ask admin to install virtualenv so you will be able to install everything else on your own.
Anyway you will have to get ssh access to server to be able run your projects, so ask admin for it.
- To install Django you just
pip install django
and you will get latest version - Python 2.7 is not necessary, but desirable since you might face problems on 2.6 like some modules you install might not be supported by 2.6 version
- If you’ve followed official tutorial, yu should have been created
requirements.txt
in your projects, just find this file and send it to your admin, asking him topip install -r requirments.txt
. If not – you should read about this file cause it kind of must-have in project. - FTP upload – yes, you have to upload whole folder
mysite1
I recommend you check out this thing, cause it is very easy and useful, especially if admin will help you to install it virtualenv wrapper
Edit: also consider installing Ubuntu alongside with Windows(it has such option out-of-box) You will fall in love with it for sure and will not be willing to return on Windows(except to play games if you do)
Source:stackexchange.com