newbee here so please be gentle have been thro search and tried various alternatives without success spent several days on it now - driving me mad
running on red hat linus with python 2.5.2 began using most recent virtualenv but could not activate found somewhere suggesting needed earlier ver so-- have used virtualenv 1.6.4 as should work with python2.6
seems to install virtual environment ok
[necrailk@server6 ~]$ python virtualenv-1.6.4/virtualenv.py virtual
New python executable in virtual/bin/python
Installing setuptools............done.
Installing pip...............done.
all looks ok in environment
[necrailk@server6 ~]$ cd virtual
[necrailk@server6 ~/virtual]$ dir
bin include lib
try to activate
[necrailk@server6 ~/virtual]$ . bin/activate
/bin/.: Permission denied.
checked chmod
[necrailk@server6 ~/virtual]$ cd bin
[necrailk@server6 bin]$ ls -l
total 3160
-rw-r--r-- 1 necrailk biz12 2130 Jan 30 11:38 activate
-rw-r--r-- 1 necrailk biz12 1050 Jan 30 11:38 activate.csh
-rw-r--r-- 1 necrailk biz12 2869 Jan 30 11:38 activate.fish
-rw-r--r-
problem, so changed it
[necrailk@server6 bin]$ ls -l
total 3160
-rwxr--r-- 1 necrailk biz12 2130 Jan 30 11:38 activate
-rw-r--r-- 1 necrailk biz12 1050 Jan 30 11:38 activate.csh
-rw-r--r-- 1 necrailk biz12 2869 Jan 30 11:38 activate.fish
-rw-r--r-- 1 necrailk biz12 1005 Jan 30 11:38 activate_this.py
-rwxr-xr-x 1 necrailk biz
try activate again
[necrailk@server6 ~/virtual]$ . bin/activate
/bin/.: Permission denied.
still no joy!!!!!
./bin activate? – Dominique Jan 30 at 13:17./bin activateand. bin/activatemean different things.. .bin/activatedoesn't make sense unless there is a folder named.binwith a leading dot. – Dominique Jan 31 at 17:57