我通常在 Windows 上使用 Python,并使用 dos 命令where python
来确保我使用的是 Python 的虚拟环境版本。Linux shell 中的等效命令是什么?
谢谢!
答案1
使用which python
。
$ which python
/usr/bin/python
C:\Users\anossovp>where python
c:\Python27\python.exe
答案2
你通常要找的不是 Python 本身在哪里,而是它的库在哪里。为此,我推荐这个:
(在 Python shell 中)
import sys
import pprint
pprint.pprint(sys.path)
除此之外你仍然可以which python
自然地做事。