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 6544131
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T11:25:45+00:00 2026-05-25T11:25:45+00:00

I tried activating a VirtualEnv through a shell script like the one below but

  • 0

I tried activating a VirtualEnv through a shell script like the one below but it doesn’t seem to work,

#!/bin/sh
source ~/.virtualenvs/pinax-env/bin/activate

I get the following error

$ sh virtualenv_activate.sh 
virtualenv_activate.sh: 2: source: not found

but if I enter the same command on terminal it seems to work

$ source ~/.virtualenvs/pinax-env/bin/activate
(pinax-env)gautam@Aspirebuntu:$

So I changed the shell script to

#!/bin/bash
source ~/.virtualenvs/pinax-env/bin/activate

as suggested and used

$ bash virtualenv_activate.sh 
gautam@Aspirebuntu:$

to run the script .

That doesn’t throw an error but neither does that activate the virtual env

So any suggestion on how to solve this problem ?

PS : I am using Ubuntu 11.04

  • 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-05-25T11:25:46+00:00Added an answer on May 25, 2026 at 11:25 am

    TLDR

    Must run the .sh script with source instead of the script solely

    source your-script.sh
    

    and not
    your-script.sh

    Details

    sh is not the same as bash (although some systems simply link sh to bash, so running sh actually runs bash). You can think of sh as a watered down version of bash. One thing that bash has that sh does not is the “source” command. This is why you’re getting that error… source runs fine in your bash shell. But when you start your script using sh, you run the script in an shell in a subprocess. Since that script is running in sh, “source” is not found.

    The solution is to run the script in bash instead. Change the first line to…

    #!/bin/bash
    

    Then run with…

    ./virtualenv_activate.sh
    

    …or…

    /bin/bash virtualenv_activate.sh
    

    Edit:

    If you want the activation of the virtualenv to change the shell that you call the script from, you need to use the “source” or “dot operator”. This ensures that the script is run in the current shell (and therefore changes the current environment)…

    source virtualenv_activate.sh
    

    …or…

    . virtualenv_activate.sh
    

    As a side note, this is why virtualenv always says you need to use “source” to run it’s activate script.  

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Tried a bunch of things but I can't get it to work consistently amid
tried to research on that but sometimes I seem to lack some googling skills...
Tried to map it from Preferences -> Settings -> Keyboard, but the key combo
Tried something like this: HttpApplication app = s as HttpApplication; //s is sender of
tried to find the answer by googling and in MSDN but with no luck.
Tried to make a little old school ajax (iframe-javascript) script. A bit of mootools
Tried examples from 'php.net' but don't understand what's the problem. Any suggestions? <?php $_SESSION['test']
Tried to install some program, it gives above message requiring 1.1.4322. BUT as the
I have two basic interfaces as below, one inheriting the other. I am binding
Tried following the instructions here: How to use Google app engine with my own

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.