I have windows 7
I am trying:
env.hosts = ['xxx.xx.xx.xxx', 'xxx.xx.xx.xxx', 'xxx.xx.xx.xxx']
env.user = 'root'
env.key_filename = 'C:\Users\Doniyor\Desktop\ssh\secure-life\privkey.ppk'
def dm(): 
   app_path = '/var/www/myproj/'
   env_path = '/var/www/virtualenvs/myproj'
   with cd(env_path):
       run('. bin/activate')
   with cd(app_path):
       run('git pull origin master')
       run('python manage.py collectstatic --settings=myproj.settings')
       run('python manage.py migrate --settings=myproj.settings')
       run('touch conf/uwsgi.ini')
But it keeps asking for root password:

what is missing here? I am fighting for almost 2 days now for it..
 
     
    