PYTHONPATH代表PYTHON要去用的库、包所要去找的路径

 761  ipython
  762  python -V
  763  python
  764  vim ~/.bashrc
  765  echo $PYTHONPATH
  766  env
  767  export PYTHONPATH=""
  768  python -c 'import sys;print sys.path' 
  769  python -c 'import caffe;print caffe.__file__' 
  770  source activate python2.7withCaffe
  771  export PYTHONPATH=""

  772  python -c 'import caffe;print caffe.__file__' 


export PYTHONPATH=""只对当前终端的python找包的路径产生了影响

你可能感兴趣的:(视频处理,Github)