python
python介绍
环境部署
语法结构
本文档使用 MrDoc 发布
-
+
首页
环境部署
### ubuntu使用apt安装python3 ```asp apt install python3.10-venv ``` ### 创建python虚拟环境 - `-m` 告诉Python 解释器运行指定的模块 - `venv`指定Python 内置模块用于创建虚拟环境 - `/python`指定python环境所在的虚拟目录位置 ```asp python3 -m venv ~/python ``` ### 激活Python虚拟环境 ```asp source ~/python/bin/activate ``` ### 查看python版本 ```asp python --version ``` ### 查看python解释器路径 ```asp which python ``` ### 创建一个项目目录 ```asp mkdir day1 && cd day1 ``` ### 编写第一个python脚本 ```asp vim hello.py ``` ```asp #!/root/python/bin/python print('hello world') ``` ### 运行脚本 ```asp python hello.py ``` ### 直接进入python环境 ```asp python ``` ### 直接执行print命令 ```asp Python 3.10.12 (main, Nov 20 2023, 15:14:05) [GCC 11.4.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> print('hello world') hello world >>> ```
done
2023年12月17日 15:40
转发文档
收藏文档
上一篇
下一篇
手机扫码
复制链接
手机扫一扫转发分享
复制链接
Markdown文件
分享
链接
类型
密码
更新密码