python - How to Use VirtualEnv libraries along with system wide libraries? -
python - How to Use VirtualEnv libraries along with system wide libraries? -
it might sound dumb, having hard time understanding how utilize virtualenv. utilize case follows: 1. ec2 python 2.6.9 , need utilize graphlab create uses > 2.7 2. installed virtualenv , installed graphlab in python 2.7.5 3. want utilize graphlab create other files not on virtual env
is possible that? if yes how. more specifically, want able utilize
import graphlab
in non virtualenv python files !!
a virtual env, long know, enviroment binded specific version of python, create install many libraries want, , sure noone of these libraries available outside of virtualenv (system wide or other envs).
if create virtualenv based on python 2.6 (let phone call env_a), , 1 based on python 2.7 (env_b), there no way utilize in env_b library env_a. way think create these 2 enviroments interoperate create python script env_a, phone call "env_a\python.exe env_a\script.py [arguments]" using scheme phone call env_b , parse ouput: not sure it's alternative you.
python virtualenv graphlab
Comments
Post a Comment