前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Terminal 常用命令

Terminal 常用命令

原创
作者头像
莫听穿林
修改2021-12-23 18:07:15
2830
修改2021-12-23 18:07:15
举报
文章被收录于专栏:notenote

放弃当前行,新起一行

control-C will kill the current prompt, abort what you're typing and start a new prompt, and set the return code to 1.

删光标前的东西

control-U deletes everything before the cursor.

The deleted command will be stored in a buffer. Press control-Y to paste the deleted command.

删光标后的东西

control-K deletes everything from the cursor to the end of the line. (Optional: Press End or control-E to jump to the end of the input first.)

查看 python3 的位置

代码语言:javascript
复制
which python3

创建虚拟设备 Creating Virtual Environments

https://docs.python.org/3/tutorial/venv.html

创建成功前面会提示进入了venv

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档