# python

安装:

```
pkg install python
```

pip修改清华源：

```
vim ~/.pip/pip.conf

# 添加
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
```

简单应用:

```
# 一个简单的http服务
python -m SimpleHTTPServer
```
