Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Finsh Get Started Chinese Translation #49

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions zh-CN/get_started/introduction.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
title: 介绍
description: "社区编写的 ComfyUI 文档。 点击 [此处](https://github.com/Comfy-Org/docs)贡献。"
---
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Need to add version: "Chinese" under description. Same for every page here.


<img
className="block dark:hidden"
src="/images/comfyui_screenshot.png"
alt="Hero Light"
/>
<img
className="hidden dark:block"
src="/images/comfyui_screenshot.png"
alt="Hero Dark"
/>

## [ComfyUI](https://github.com/comfyanonymous/ComfyUI)

最强大和现代化的 stable diffusion GUI 和后端,由 [comfyanonymous](https://github.com/comfyanonymous) 和其他 [贡献者](https://github.com/comfyanonymous/ComfyUI/graphs/contributors)编写。
56 changes: 56 additions & 0 deletions zh-CN/get_started/manual_install.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
---
title: "手动安装"
---

import GitClone from "/snippets/git-clone.mdx";
import Conda from "/snippets/conda.mdx";
import PipInstall from "/snippets/pip-install.mdx";
import InstallGpuDependencies from "/snippets/install-gpu-dependencies.mdx";
import RunComfy from "/snippets/run-comfy.mdx";

<Tabs>
<Tab title="Windows">
### 克隆此仓库

<GitClone />

<Warning>如果您未安装 Microsoft Visual C++ Redistributable, 请点击[此处](https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170) 安装。</Warning>


### 安装依赖

1. <Conda />
1. <InstallGpuDependencies />
1. <PipInstall />
1. <RunComfy />
</Tab>
<Tab title="Linux">

### 克隆此仓库

<GitClone />

### 安装依赖

1. <Conda />
1. <InstallGpuDependencies />
1. <PipInstall />
1. <RunComfy />
</Tab>

<Tab title="MacOS">

### 克隆此仓库

打开 [终端应用](https://support.apple.com/guide/terminal/open-or-quit-terminal-apd5265185d-f365-44cb-8b09-71a064a42125/mac)。

<GitClone />

### 安装依赖

1. <Conda />
1. <InstallGpuDependencies />
1. <PipInstall />
1. <RunComfy />
</Tab>
</Tabs>
50 changes: 50 additions & 0 deletions zh-CN/get_started/pre_package.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
---
title: "预构建整合包"
---

import GitClone from "/snippets/git-clone.mdx";
import Conda from "/snippets/conda.mdx";
import PipInstall from "/snippets/pip-install.mdx";
import InstallGpuDependencies from "/snippets/install-gpu-dependencies.mdx";
import RunComfy from "/snippets/run-comfy.mdx";

<Tabs>
<Tab title="Windows">
仅适用于英伟达显卡或 CPU。其他选项请考虑手动安装。

<Steps>
<Step title="下载">
<a className="prose" href="https://github.com/comfyanonymous/ComfyUI/releases/latest/download/ComfyUI_windows_portable_nvidia.7z" style={{ display: 'inline-block', backgroundColor: '#0078D6', color: '#ffffff', padding: '10px 20px', borderRadius: '8px', borderColor: "transparent", textDecoration: 'none', fontWeight: 'bold'}}>
<p className="prose" style={{ margin: 0, fontSize: "0.8rem" }}>Download for Windows</p>
</a>
</Step>

<Step title="解压">
使用 [7-Zip](https://7-zip.org/) 解压
</Step>
<Step title="运行">
运行 `run_nvidia_gpu` 脚本将使用您的英伟达显卡 运行。

运行 `run_cpu` 脚本将使用您的 CPU 运行。
</Step>
</Steps>
</Tab>
<Tab title="Linux">
## Linux


<Warning>
Linux 预构建整合包目前不可用,请考虑手动安装。
</Warning>

</Tab>

<Tab title="MacOS">

## MacOS

<Warning>
MacOS 预构建整合包目前不可用,请考虑手动安装。
</Warning>
</Tab>
</Tabs>