オンライン支払い処理「Stripe」のAPI用のPythonライブラリをインストール

スポンサーリンク

オンライン支払い処理「Stripe」のAPI用のPythonライブラリをインストールしてみます。

stripe-python(https://github.com/stripe/stripe-python)は、StripeAPIへの便利なアクセスが提供されています。

■Python

今回のPythonのバージョンは、「3.8.5」を使用しています。(Windows10)(pythonランチャーでの確認)

■stripeをインストールする

stripeをインストールを行いますが、今回はpipを経由してインストールを行うので、まずWindowsのコマンドプロンプトを起動します。

pip install stripe

起動後、上記のコマンドを入力し、Enterキーを押します。

なお、今回は、pythonランチャーを使用しており、Python Version 3.8.5にインストールを行うために、pipを使う場合にはコマンドでの切り替えを行います。

py -3.8 -m pip install stripe

切り替えるために、上記のコマンドを入力し、Enterキーを押します。

Defaulting to user installation because normal site-packages is not writeable
Collecting stripe
Downloading stripe-2.60.0-py2.py3-none-any.whl (208 kB)
|████████████████████████████████| 208 kB 1.3 MB/s
Requirement already satisfied: requests>=2.20; python_version >= “3.0” in c:\users\user_\appdata\roaming\python\python38\site-packages (from stripe) (2.25.1)
Requirement already satisfied: certifi>=2017.4.17 in c:\users\user_\appdata\roaming\python\python38\site-packages (from requests>=2.20; python_version >= “3.0”->stripe) (2021.5.30)
Requirement already satisfied: urllib3<1.27,>=1.21.1 in c:\users\user_\appdata\roaming\python\python38\site-packages (from requests>=2.20; python_version >= “3.0”->stripe) (1.26.5)
Requirement already satisfied: chardet<5,>=3.0.2 in c:\users\user_\appdata\roaming\python\python38\site-packages (from requests>=2.20; python_version >= “3.0”->stripe) (4.0.0)
Requirement already satisfied: idna<3,>=2.5 in c:\users\user_\appdata\roaming\python\python38\site-packages (from requests>=2.20; python_version >= “3.0”->stripe) (2.10)
Installing collected packages: stripe
Successfully installed stripe-2.60.0

Enterキーを押すと、インストールが開始され、上記のように「Successfully installed」と表示されます。これが表示されれば、stripeが正常にインストールされたことになります。

なお、今回はstripeのバージョン2.60.0をインストールしました。

コメント

タイトルとURLをコピーしました