Skip to content

Commit

Permalink
🔧 修改插件依赖安装命令为使用poetry运行pip
Browse files Browse the repository at this point in the history
  • Loading branch information
HibiKier committed Jan 17, 2025
1 parent 2b3aaf4 commit f8e6503
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zhenxun/builtin_plugins/plugin_store/data_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def install_requirement(plugin_path: Path):

try:
result = subprocess.run(
["pip", "install", "-r", str(existing_requirements)],
["poetry", "run", "pip", "install", "-r", str(existing_requirements)],
check=True,
capture_output=True,
text=True,
Expand Down

0 comments on commit f8e6503

Please sign in to comment.