Skip to content

Commit e3f0017

Browse files
📝 更新项目管理文档,新增内容与示例
- 新增项目管理章节,介绍程序员的职业发展方向,包括技术深耕与转型管理的路径。 - 新增项目管理概论文档,提供项目管理的基本概念与结构。
1 parent d5cafbc commit e3f0017

File tree

3 files changed

+34
-2
lines changed

3 files changed

+34
-2
lines changed

docs/docs/选择编程语言/Python/39模块.mdx

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,8 +256,16 @@ print(math.sqrt(16)) # 4.0
256256

257257
我们可以通过升级至最新版本或安装指定的版本来解决:
258258

259-
- 安装指定的版本示例:`pip install opencv-python==x.x.x`(x.x.x 为版本号)
260-
- 升级至最新版本示例:`pip install --upgrade opencv-python`
259+
```bash showLineNumbers
260+
# 安装最新版
261+
python -m pip install SomePackage # latest version
262+
# 安装指定版本
263+
python -m pip install 'SomePackage==1.0.4' # specific version
264+
# 安装最小版本
265+
python -m pip install 'SomePackage>=1.0.4' # minimum version
266+
# 升级至最新版本
267+
python -m pip install --upgrade SomePackage
268+
```
261269
:::
262270

263271
此外,有些包作者会仅在 GitHub 提供源码,需要我们自己编译安装。

docs/docs/项目管理/index.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: 项目管理
3+
sidebar_position: 10
4+
---
5+
6+
随着开发经验的不断积累,程序员通常会面临两种主要的职业发展方向:
7+
8+
**1. 继续深耕技术方向**
9+
可以拓宽知识面,成为全栈开发工程师;
10+
可以深入底层技术,成为某一领域的专家;
11+
也可以向上抽象,成长为系统架构师;
12+
还可以借助 AI 工具,提升效率,成为“超级个体”。
13+
14+
**2. 转型项目管理或领导岗位**
15+
可以成为兼具技术与管理能力的研发经理;
16+
可以专职担任项目经理(PM);
17+
也可以选择创业,担任 CTO 或 CEO,带领团队开拓业务。
18+
19+
本章节内容讲述如何成为一名合格的信息系统项目经理。
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: 项目管理概论
3+
sidebar_position: 1
4+
---
5+

0 commit comments

Comments
 (0)