forked from LearnPrompt/LearnPrompt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
61 lines (43 loc) · 1.63 KB
/
sidebars.js
File metadata and controls
61 lines (43 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
// By default, Docusaurus generates a sidebar from the docs folder structure
tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
// But you can create a sidebar manually
/*
tutorialSidebar: [
'intro',
'hello',
{
type: 'category',
label: 'Tutorial',
items: ['tutorial-basics/create-a-document'],
},
],
*/
};
module.exports = sidebars;
//使用前如果没有安装Conda的朋友需要先安装conda,conda教程链接: https://blog.csdn.net/qq_43108090/article/details/121393241 (如果有疑问的朋友可联系在更新日志中联系作者进行反馈,我们将推出保姆级安装教学)。除此之外还需要安装git和cuda
//安装完conda后,我们在windows打开anaconda的命令行终端
//
//然后通过以下命令新建属于conda的环境(其中[your_name]可以替换成各位想要的名字,比如笔者起的名字为sd,则命令行如下图所示):
//```
//conda create --name [your_name] python=3.8
//```
//
//此步骤键盘输入y后按照回车即可安装成功
//
//安装成功后输入
//```
//conda activate [your_name]
//```
//激活环境
//