全部產品
Search
文件中心

Simple Log Service:安裝Log ServicePython SDK

更新時間:Nov 21, 2024

本文介紹安裝Python SDK的方法。安裝Log ServicePython SDK後,即可在編寫代碼時調用Log ServiceSDK的介面。本文介紹如何安裝Log ServicePython SDK。

前提條件

  • 已安裝Python和Python開發環境(例如PyCharm)。

    Log ServicePython SDK支援Pypy2、3和Python2.6、2.7、3.3、3.4、3.5、3.6、3.7、3.8、3.9及以上版本。您可以執行python -V命令檢查已安裝的Python版本。

  • 已安裝Python的包管理工具pip

    您可以執行pip -V(Python3 以上版本使用pip3 -V)命令檢查您已安裝的pip版本。

安裝SDK

在命令列工具中,以管理員身份執行如下命令安裝Python SDK。更多版本資訊,請參見Aliyun Log Python Release

pip install -U aliyun-log-python-sdk

驗證SDK

  1. 安裝SDK後,執行以下步驟驗證已安裝的Log Service Python SDK。

    pip show aliyun-log-python-sdk
  2. 返回以下資訊,代表安裝成功。

    Name: aliyun-log-python-sdk
    Version: 0.9.12
    Summary: Aliyun log service Python client SDK
    Home-page: https://github.com/aliyun/aliyun-log-python-sdk
    Author: Aliyun

常見問題

提示不是內部或外部命令

在Windows環境中,如果提示不是內部或外部命令,請在環境變數中編輯Path,增加Python和pip的安裝路徑。pip的安裝路徑一般為Python所在目錄的Scripts檔案夾。配置完成後,您可能需要重啟電腦使環境變數生效。

後續步驟