without haste but without rest

[python] 인터프리터 경로 출력 본문

ProgrammingLanguage/Python

[python] 인터프리터 경로 출력

JinungKim 2021. 10. 17. 18:04

가끔씩 인터프리터가 꼬여서 현재 워크스페이스에서 어떤 인터프리터를 사용하는지 확인해야할 때가 있다.

import sys

print(sys.path)

 

다양한 방법들이 있으나 위 방법이 제일 간편했다.

 

How to Find Path Information in Python - dummies

In this article, learn about the sources of path information in Python, and how to find path information using two different methods.

www.dummies.com

 

Comments