0
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?

LangChain チュートリアル SyntaxError: invalid syntax エラー修正例

Last updated at Posted at 2024-10-23

・エラー内容
Python の文法に誤りがある。

test.py
  File "<ipython-input-8-581f3f6b1fe5>", line 1
    export LANGCHAIN_TRACING_V2="true"
           ^
SyntaxError: invalid syntax

・修正案
ファイル名は仮名です。

test.py
import os
os.environ["LANGCHAIN_TRACING_V2"] = "true"
os.environ["export LANGCHAIN_API_KEY"]="...."
0
0
0

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
0
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?