聪明办法学python — 1
任务【0】安装
-
conda配置
-
顺便了解了anniconda和miniconda的联系:
mini体谅更小,但是没有图形化界面 -
配置
下载的一般流程:
找一个镜像网站(因为服务器在国外,直接下载很慢)校园网联合镜像站 https://help.mirrors.cernet.edu.cn/ 阿里巴巴开源镜像站 https://developer.aliyun.com/mirror/ 清华大学开源软件镜像站:https://help.mirrors.cernet.edu.cn/anaconda/ 南方科技大学开源软件镜像站:https://help.mirrors.cernet.edu.cn/anaconda-extra/
环境配置:(有以下几个需要注意的点)
修改shell的执行策略
更换镜像源 pip conda本次特有:
PyPI更换镜像源 -
正常使用:
- 创建
conda create -n Datawhale python=3.10 # conda 环境创建,在conda的shell中
其中 -n 代表创建的环境名称,这里是 Datawhale,并指定 Python 版本为 3.10
- 激活
创建后仍需要激活
conda activate Datawhale
如果需要删除某个 Conda 环境:
conda deactivate
conda remove -n Datawhale --all
- 创建
-
-
Pip配置
pip install jupyter(在哪个shell中下载?)
jupyter-notebook# 会自动跳转到浏览器
结束学习时使用:
Ctrl + C # 关闭 Jupyter Notebook 服务 -
VScode(已经下过)
任务【1】启航
-
注释
-
输出print
结束
分隔
多行
运算
表达式 -
输入input
返回字符串
一行多个输入值split方法 -
导入模块import
-
常见错误
语法
运行(崩溃)
逻辑(计算机查不出来)