Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8895307
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T23:44:39+00:00 2026-06-14T23:44:39+00:00

I am using paramiko and create some virtualenvs over ssh like so: from paramiko

  • 0

I am using paramiko and create some virtualenvs over ssh like so:

from paramiko import SSHClient, SSHConfig

def ssh_connect(self):
    # ssh config file
    config = SSHConfig()
    config.parse(open(settings.SSH_CONFIG))
    o = config.lookup('my_key')

    # ssh client
    ssh_client = SSHClient()
    ssh_client.load_system_host_keys()
    ssh_client.connect(o['hostname'], username=o['user'])
    return ssh_client

def create_virtualenv(self):
    ssh = self.ssh_connect()
    venv_path = '/srv/virtualenvs/%s' % self.domain
    cmd = 'virtualenv %s' % env_path
    stdin = ssh.exec_command(cmd)
    self.create_database()
    ssh.close()

Now I ran into a bit of a wall here because I want to also install Django into this newly create virtualenv with pip. I tried a postmkvirtualenv hook because I do have virtualenvwrapper installed on that server but that does not seem to run when I create a new environment using the code above.

Can anyone give me any hints as to how I can install Django in this manner?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T23:44:40+00:00Added an answer on June 14, 2026 at 11:44 pm

    Did you try using the workon command? This command is part of virtualenvwrapper and allows you to activate a given virtualenv, you should be able to do something like this:

    def create_virtualenv(self):
        ssh = self.ssh_connect()
        venv_path = '/srv/virtualenvs/%s' % self.domain
        cmd = 'workon %s; pip install Django' % env_path
        stdin = ssh.exec_command(cmd)
        self.create_database()
        ssh.close()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using paramiko to connect to a remote server over ssh. When authenticating
I'm using the Paramiko module to log into a server (ssh on some and
I have a program that grabs some data through ssh using paramiko: ssh =
I'd like to start an interactive SSH terminal from a Python script without using
I'm writing fairly simple application which connects to server through SSH (using paramiko ),
I am using python Paramiko to connect using ssh to a remote ubuntu box
I would like to retrieve multiple log files from an Ubuntu server (using Python
I'm using Paramiko to connect through SSH to a server. Basic authentication works well,
I am writing python script to login to ssh server using paramiko. I wrote
I am using Python's paramiko packet to keep an ssh-connection with an server :

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.