findpython的安装位置(如果它不是默认目录)

Python是在我的机器上,我只是不知道在哪里,如果我在terminal中键入python将打开Python 2.6.4,这不是在它的默认目录,那里肯定有一种方法,从这里find它的安装位置?

你在用什么操作系统? 在Unix(包括Mac OS X)你可以做which python ,它会告诉你。

sys有一些有用的东西:

 $ python Python 2.6.6 (r266:84297, Aug 24 2010, 18:13:38) [MSC v.1500 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import sys >>> sys.executable 'c:\\Python26\\python.exe' >>> sys.exec_prefix 'c:\\Python26' >>> >>> print '\n'.join(sys.path) c:\Python26\lib\site-packages\setuptools-0.6c11-py2.6.egg c:\Python26\lib\site-packages\nose-1.0.0-py2.6.egg C:\Windows\system32\python26.zip c:\Python26\DLLs c:\Python26\lib c:\Python26\lib\plat-win c:\Python26\lib\lib-tk c:\Python26 c:\Python26\lib\site-packages c:\Python26\lib\site-packages\win32 c:\Python26\lib\site-packages\win32\lib c:\Python26\lib\site-packages\Pythonwin c:\Python26\lib\site-packages\wx-2.8-msw-unicode 

独立于平台的解决scheme在一条线上

Python 2:

 python -c "import sys; print sys.executable" 

Python 3:

 python -c "import sys; print(sys.executable)" 

看看sys.path

 >>> import sys >>> print(sys.path) 

要在Windows上查找所有Python的安装,请在命令提示符下运行:

 dir site.py /s 

确保你在根驱动器。 你会看到这样的东西。

在运行where python应该工作的窗口。

你应该能够input“哪个python”,它会打印出python的path。

或者你可以input:

 python >>> import re >>> re.__file__ 

它会打印一个path到重新模块,你会看到python是这样的。

对于Windows用户:

如果python命令不在$PATH环境variables中。

打开PowerShell并运行这些命令来查找文件夹

 cd \ ls *ython* -Recurse -Directory 

这应该告诉你在哪里安装python