Skip to content

Commit 4d5094e

Browse files
committed
Fixes #42: Add new README.md file to prepare for i18n (internationalization)
1 parent 33ae8b2 commit 4d5094e

File tree

3 files changed

+126
-1
lines changed

3 files changed

+126
-1
lines changed

README-ZH.md

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
2+
# CS101/HMU-1.101:从零开始的计算机科学
3+
4+
欢迎来到计算机科学的世界!在这里,您会发现大量知识和资源,帮助您理解计算、编程和技术的基础。这一领域不断发展,并在我们日常生活的各个方面发挥着至关重要的作用。
5+
6+
## 可用语言
7+
- [English](README.md)
8+
- [中文](README-ZH.md)
9+
10+
11+
## 您将学习到的内容
12+
13+
1. **编程基础**:理解 Python、Java 或 C++ 等编程语言。
14+
2. **数据结构与算法**:学习如何组织、管理和处理数据。
15+
3. **计算机系统**:探索计算机的工作原理,包括硬件和操作系统。
16+
4. **Web 开发**:掌握构建网站和应用程序的技能。
17+
5. **软件工程**:理解软件开发和项目管理的原则。
18+
6. **人工智能与机器学习**:深入了解塑造未来的前沿技术。
19+
20+
## 本地部署
21+
22+
<details>
23+
<summary>点击这里查看 Windows 安装步骤</summary>
24+
25+
1. 访问 [Python 官方网站](https://www.python.org/downloads/)
26+
2. 点击“Download Python”按钮,下载最新版本的安装程序。
27+
3. 运行下载的安装程序。
28+
4. 在安装界面中,确保勾选“Add Python to PATH”选项。
29+
5. 点击“Install Now”进行安装。
30+
6. 安装完成后,打开命令提示符,输入以下命令验证安装:
31+
```cmd
32+
python --version
33+
```
34+
7. 需重启终端或手动更新环境变量,建议您优先重启操作系统以确保设置生效。
35+
36+
</details>
37+
38+
<details>
39+
<summary>安装项目依赖</summary>
40+
41+
本课程使用了 `mkdocs`,您可以使用 `pip` 来安装依赖:
42+
```bash
43+
pip install -r requirements.txt
44+
```
45+
46+
</details>
47+
48+
<details>
49+
<summary>运行项目</summary>
50+
51+
使用以下命令启动项目:
52+
```bash
53+
mkdocs serve
54+
```
55+
56+
</details>
57+
58+
<details>
59+
<summary>运行效果图</summary>
60+
61+
![renderings.png](img/renderings.png)
62+
63+
如果一切顺利,您可以访问 [http://127.0.0.1:8000/](http://127.0.0.1:8000/) 本地观看这个课程。
64+
65+
</details>

README.md

Lines changed: 61 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,63 @@
11
# CS101/HMU-1.101: Computer Science from Scratch
22

3-
Welcome to the computer science.
3+
Welcome to the world of computer science! Here, you will discover a wealth of knowledge and resources to help you understand the fundamentals of computing, programming, and technology. This field is constantly evolving and plays a crucial role in various aspects of our daily lives.
4+
5+
## Available Languages
6+
- [English](README.md)
7+
- [中文](README-ZH.md)
8+
9+
## What You Will Learn
10+
11+
1. **Programming Basics**: Understand programming languages such as Python, Java, or C++.
12+
2. **Data Structures and Algorithms**: Learn how to organize, manage, and process data.
13+
3. **Computer Systems**: Explore how computers work, including hardware and operating systems.
14+
4. **Web Development**: Master the skills to build websites and applications.
15+
5. **Software Engineering**: Understand the principles of software development and project management.
16+
6. **Artificial Intelligence and Machine Learning**: Gain insights into cutting-edge technologies that shape the future.
17+
18+
## Local Deployment
19+
20+
<details>
21+
<summary>Click here to view Windows installation steps</summary>
22+
23+
1. Visit the [Python official website](https://www.python.org/downloads/).
24+
2. Click the “Download Python” button to download the latest version of the installer.
25+
3. Run the downloaded installer.
26+
4. In the installation interface, make sure to check the “Add Python to PATH” option.
27+
5. Click “Install Now” to proceed with the installation.
28+
6. After installation, open the command prompt and enter the following command to verify the installation:
29+
```cmd
30+
python --version
31+
```
32+
7. You may need to restart the terminal or manually update the environment variables; it is recommended to restart your operating system to ensure the settings take effect.
33+
34+
</details>
35+
36+
<details>
37+
<summary>Install Project Dependencies</summary>
38+
39+
This course uses `mkdocs`, and you can install the dependencies using `pip`:
40+
```bash
41+
pip install -r requirements.txt
42+
```
43+
44+
</details>
45+
46+
<details>
47+
<summary>Run the Project</summary>
48+
49+
Use the following command to start the project:
50+
```bash
51+
mkdocs serve
52+
```
53+
54+
</details>
55+
56+
<details>
57+
<summary>Run Effect Diagram</summary>
58+
59+
![renderings.png](img/renderings.png)
60+
61+
If everything goes smoothly, you can access [http://127.0.0.1:8000/](http://127.0.0.1:8000/) to view this course locally.
62+
63+
</details>

img/renderings.png

43 KB
Loading

0 commit comments

Comments
 (0)