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

hibernate - How to load global settings frequently used in application in Java -

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

objective c - Ownership modifiers with manual reference counting -