Skip to content

Commit

Permalink
环境文档
Browse files Browse the repository at this point in the history
  • Loading branch information
cr-mao committed Aug 22, 2024
1 parent aefa35f commit 4841a6a
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 2 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
## ai相关学习笔记



### 数学基础
- [高等数学](math/高等数学.md)
- [线性代数](math/线性代数.md)
- 概率统计


### 数据处理
### 数据分析与可视化

numpy,pandas,jupyter notebook ,matplotlib 等
- [开发环境](datahandling/开发环境.md)

pandas,numpy,绘图等


### 机器学习
Expand Down
60 changes: 60 additions & 0 deletions datahandling/开发环境.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
## 开发环境


### conda : python多版本控制

anaconda 安装, pycharm 配置conda环境。
```shell
# 查看环境
conda env list
# 创建环境 ,最新的 python
conda create --name myenv
# 指定 3.10 python 版本
conda create -n myenv3.10 python=3.10
# 激活
conda activate myenv3.10
# 删除环境
conda remove --name myenv3.10 --all
# 克隆环境
conda create --name cpname --clone oldname
pip list
conda list

```

### 安装 jupyter, pandas,matplotlib,opencv-python 库
```shell
pip install jupyter
# 浏览器会打开 jupyter notebook
# 在需要打开的项目中 执行。
jupyter notebook
# 数据分析包, 可以处理表格数据
pip install pandas
# 绘图包
pip install matplotlib
# 图像处理库, 视频处理
pip install opencv-python
# 安装dataspell, 操控jupyter .

```


### jupyter一些命令

```text
%run 运行命令行
%timeit 同行加一行
%%timeit 在其下面运行代码块。
%time
%%time
%run? : 加个? 看使用文档
np.random.<TAB> 查看random中的更多方法
np.random? 看模块的文档
```

0 comments on commit 4841a6a

Please sign in to comment.