查看Python安装路径以及安装包路径小技巧
查看Python安装路径以及安装包路径小技巧
发布时间:2016-12-28 来源:查字典编辑
摘要:特别是linux系统,装了多个python,有时候找不到python的绝对路径,有时候装了个django,又找不到django安装到哪里了。...

特别是linux系统,装了多个python,有时候找不到python的绝对路径,有时候装了个django,又找不到django安装到哪里了。。当然查看的方法有很多种,这里列出几种,供没有经验的人参考下。

复制代码 代码如下:

G:codemoniter>python -c "from distutils.sysconfig import get_python_lib; print (get_python_lib())"

C:Python27Libsite-packages

G:codemoniter>python -c "import os; print os.__file__"

C:Python27libos.pyc

G:codemoniter>python -c "import sys; print sys.executable"

C:Python27python.exe

其实只要知道python home路径就好办了。

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新python学习
热门python学习
脚本专栏子分类