【Stable Diffusion Inpainting】环境配置

name: ldm
dependencies:
  - pip:
    - -e git+https:

或者

pip install -e git+https://github.com/CompVis/taming-transformers.git@master#egg=taming-transformers

git+ 表示使用 Git 协议下载源代码,这意味着 pip 下载的代码将基于 Git 版本控制系统管理,并且可以使用 Git 工具进行参与平台。

https://github.com/CompVis/taming-transformers 这是要下载代码库的位置,指定了代码在 GitHub 上的仓库路径位置,例如 https://github.com/CompVis/taming-transformers 表示下载的代码库路径为 “PaddlePaddle” 的 “Parakeet” 库。

@master 表示下载的代码库的一个 Git 的分支、提交或标签。

#egg=taming-transformers 是一个可选项,表示将实际安装的 Python 包的名称指定为 taming-transformers。

ref

https://blog.csdn.net/qq_42940160/article/details/131284998

https://blog.csdn.net/weixin_43905975/article/details/129988104

你可能感兴趣的:(stable,diffusion)