在windows 10上,我已经安装并运行了python,但没有安装在标准位置C:\PythonXY中。
如何查找python安装的位置?
发布于 2016-04-21 14:08:33
在控制台中运行where python。
发布于 2016-04-21 14:09:46
你可以这样做:
>>> import sys
>>> sys.executable
C:\Python35\python.exehttps://stackoverflow.com/questions/36772145
复制相似问题