get python path

31

>>> import os
>>> import sys
>>> os.path.dirname(sys.executable)
'C:\\Python25'
from pathlib import Path

current_file: Path = Path(__file__).resolve()
import sys
print(sys.path)
current_path: Path = Path(__file__).parent.resolve()
this video might help: https://youtu.be/PzlQPNNt8T4?t=147

(video starts at 2:27)

Comments

Submit
0 Comments