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
Post a Comment