我正在尝试使用我的 Google Colab 运行 langgraph。所以我使用以下命令在我的 Google Colab 中安装
poetry
。
from google.colab import drive
drive.mount('/content/gdrive')
# Move in your Drive
%cd /content/gdrive/MyDrive/
# Create and move in the new project directory
!rm -rf reflection-agent
!mkdir reflection-agent
%cd reflection-agent
!pip install poetry
# Configure poetry to create virtual environments in the project folder
!poetry config virtualenvs.in-project true
但是在尝试在我的目录
pyproject.toml
中创建reflection-agent
文件时,我的以下命令!poetry init
运行了几个小时而没有创建pyproject.toml
你能帮我解决这个问题吗?
可能某些操作发生了一些交互(询问是/否问题),而您没有看到这一点。由于您没有可访问的终端,因此您无法进入提示来响应交互式查询。
尝试跑步:
poetry init --no-interaction