User Tools

Site Tools


computer:programming:python-environment

Pthon工作环境

安装Pthon

下载安装最新版64位Python:https://www.python.org/

更新pip配置,使用国内源:

pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

安装Jupyter Notebook工作环境

安装 Jupyter Notebook:

pip install notebook

启动 Jupyter Notebook:

jupyter notebook

安装基础包

numpy

安装基础计算包Numpy:

pip install numpy

matplotlib

安装图形工具包Matplotlib:

pip install matplotlib

pandas

安装数据处理包:

pip install pandas

scipy

安装科学计算包:

pip install scipy

seaborn

seaborn 是基于 Matplotlib的高级统计数据图形工具:

pip install seaborn

安装应用工具包

AkShare

AKShare 是基于 Python 的财经数据接口库:

pip install akshare  --upgrade
computer/programming/python-environment.txt · Last modified: 2022/03/02 03:25 by zhwiki