如何将 env 文件从操作系统导入到 jupyter 笔记本?

问题描述 投票:0回答:1

我无法将我的 api 密钥导入到网络浏览器上的 jupyter 笔记本中,我尝试导入它,但显示 None 。我该怎么办?

我没有打印 api 密钥,因为这就是我尝试导入的内容,但它没有打印任何内容。

python api environment-variables jupyter openai-api
1个回答
0
投票

我 90% 确定这是一个在其他地方有答案的问题,但在这里:

# os for accessing the env
import os

from dotenv import load_dotenv, dotenv_values 
# loading variables from .env file
load_dotenv() # pass a path if it's not a .env in the current working directory 
 
# accessing and printing value
print(os.getenv("VARIABLE_NAME"))
© www.soinside.com 2019 - 2024. All rights reserved.