-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Linux | ||
|
||
掌握使用 Linux 操作系统,是人工智能专业研究人员的基本技能之一,但是事实上,目前在该领域中,图形化的内容已经较多,而人工智能的科研需求仅为运行代码,因此并无过多的需求,在这里给出几个比较常用的指令。 | ||
|
||
- `cd`:切换目录 | ||
- `ls`:查看当前目录下的文件 | ||
- `pwd`:查看当前目录 | ||
- `cp`:复制文件 | ||
- `mv`:移动文件 | ||
- `rm`:删除文件 | ||
- `mkdir`:创建文件夹 | ||
- `rmdir`:删除文件夹 | ||
- `cat`:查看文件内容 | ||
|
||
同时读者或许需要掌握 conda 的常见使用方式,主要为 `create` 和 `activate` 的用法,用于包管理。 | ||
|
||
在此基础之上,使用 `python3 your_python_file.py` 即可运行脚本。 |