ubunt18.04中pip安装的包和虚拟环境中pip安装的包各自在哪里

一:正式环境中
1. pip pip3 安装的包在下面路径(pip指向了python3.6解释器)
~/.local/lib/python3.6/site-packages/

2. pip2 安装的包在下面路径下
~/.local/lib/python2.7/site-packages/

3. pip3.5 安装的包在下面路径下
~/.local/lib/python3.5/site-packages/


二:虚拟环境中
pip 安装的包在下面路径下
~/.virtualenvs/虚拟环境名目录/lib/python3.5(或python2.7或python3.6)/site-packages





 

你可能感兴趣的:(Ubuntu)