File tree Expand file tree Collapse file tree 3 files changed +34
-2
lines changed
Expand file tree Collapse file tree 3 files changed +34
-2
lines changed Original file line number Diff line number Diff 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 提供源码,需要我们自己编译安装。
Original file line number Diff line number Diff line change 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+ 本章节内容讲述如何成为一名合格的信息系统项目经理。
Original file line number Diff line number Diff line change 1+ ---
2+ title : 项目管理概论
3+ sidebar_position : 1
4+ ---
5+
You can’t perform that action at this time.
0 commit comments