码迷,mamicode.com
首页 > 编程语言 > 详细

[Python]查看python路径以及安装包的路径

时间:2015-04-06 23:18:37      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:python   安装包   目录   查找   

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

G:\code\moniter>python -c "from distutils.sysconfig import get_python_lib; print (get_python_lib())"
C:\Python27\Lib\site-packages

G:\code\moniter>python -c "import os; print os.__file__"
C:\Python27\lib\os.pyc

G:\code\moniter>python -c "import sys; print sys.executable"
C:\Python27\python.exe

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

声明:
本文出自 “orangleliu笔记本” 博客,转载请务必保留此出处http://blog.csdn.net/orangleliu/article/details/44907221
作者orangleliu 采用署名-非商业性使用-相同方式共享协议

[Python]查看python路径以及安装包的路径

标签:python   安装包   目录   查找   

原文地址:http://blog.csdn.net/orangleliu/article/details/44907221

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!