linux - VirtualEnv for software dependencies -


i trying install software dependencies without root permission , have been using virtualenv. following commands:

module load python virtualenv directoryname pip install numpy 

but, when following error:

error: not create '/n/soft/python/2.7/lib/python2.7/site-packages/numpy': permission denied

does know how can resolve this?

thanks in advance

looks first need activate virtualenv.

virtualenv test source test/bin/activate pip install numpy 

you see terminal line change. more info on subject here: http://www.virtualenv.org/en/latest/virtualenv.html#usage


Comments

Popular posts from this blog

python 3.x - Mapping specific letters onto a list of words -

javascript - jquery or ashx not working -

inno setup - TLabel or TNewStaticText - change .Font.Style on Focus like Cursor changes with .Cursor -