1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

watsonx.ai StudioのJupyter Notebookで環境変数を読み込む

Last updated at Posted at 2025-03-26

CP4DaaSでwatsonx.ai StudioのJupyter Notebookで環境変数を読み込む方法を考えます。
APIKEYなどをプログラムにハードコーティングするのは再利用やセキュリティの観点から望ましくありません。そのため環境変数を別途定義して、Notebookから読み込んで使うことが多いと思います。

watsonx.ai Studioでは環境テンプレートの中に環境変数を記述して、利用することができます。なお、ファイル内に環境変数を定義したい場合はこちらの記事を参考にしてください。

環境テンプレートに環境変数を記述

プロジェクトの管理タブの「環境」の「テンプレート」から「新規テンプレート」をクリックします。

image.png

Nameに適当な名前を付けます。(ここではtestenv2)。使いたい環境を設定し(ここではデフォルトのまま)、「Create」をクリックします。

image.png

作成した環境の「…」のメニューから「編集」をクリックします。
image.png

Cutomizationの「Create」をクリックします

image.png

variablesセクションを作って環境変数を定義し、「Apply」します。

variables:
  APIKEY: xxx

image.png

「Close」で閉じます。
image.png

Notebookでの環境変数取得

新規のNotebookを作成します。
適当な名前をつけ、ランタイムの選択に先ほどつくったカスタム環境を選びます(ここではtestenv2)。そして「作成」をクリックします。

image.png

以下のように環境変数を取得できます。

import os
os.environ.get("APIKEY")

image.png

参考

環境テンプレートのカスタマイズの例 環境変数の設定

watsonx.ai StudioのJupyter Notebookで環境変数をファイルから読み込む #Watson-Studio - Qiita

1
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?