Python 的安裝位置

Manav Narula 2023年1月30日 2021年3月21日
  1. 使用 dirname() 函式查詢 Python 的安裝資料夾
  2. 使用 where 命令查詢 Python 的安裝資料夾
  3. 使用 which 命令查詢 Python 的安裝資料夾
Python 的安裝位置

任何軟體或應用程式的安裝資料夾都具有一定意義,因為它將我們指向可以找到與之相關的大多數相關檔案和資料夾的確切位置。Python 也是如此,我們必須將其安裝在用於儲存語言模組和基本框架的特定位置。

在本教程中,我們將學習如何檢視 Python 安裝資料夾的路徑。

使用 dirname() 函式查詢 Python 的安裝資料夾

os 庫用於與作業系統進行互動,並且具有可用於檢索檔案的完整路徑的功能。該庫中的 dirname() 函式可用於從指定檔案的路徑中檢索目錄。

要返回安裝目錄,我們從 sys 庫中將 sys.executable 傳遞給該函式。sys.executable 返回 Python 直譯器的二進位制可執行檔案的路徑。

以下程式碼顯示瞭如何使用它。

import os
import sys

print(os.path.dirname(sys.executable))

輸出:

C:\Python\Python 3.9\

使用 where 命令查詢 Python 的安裝資料夾

我們可以在命令提示符下直接使用 where python 命令在 Windows 中找到 Python 的安裝資料夾。

C:\>where python
C:\Python\Python 3.9\python.exe

使用 which 命令查詢 Python 的安裝資料夾

在 Linux 和 macOS 中,我們可以在終端中使用 which python 命令來檢視 Python 的安裝路徑。

Author: Manav Narula
Manav Narula avatar Manav Narula avatar

Manav is a IT Professional who has a lot of experience as a core developer in many live projects. He is an avid learner who enjoys learning new things and sharing his findings whenever possible.

LinkedIn

相關文章 - Python Installation