IDE
- JupyterLab
- Spyder
- PyCharm
jupyter命令
1 2 |
# 启动 jupyter lab |
jupyter快捷键
1 2 |
# 运行当前块代码 ctrl + enter |
Conad命令
1 2 |
# 查看Python库 conda list |
Python命令
1 2 3 4 5 6 7 8 |
# 查看已经安装的所有Python库 pip list # 调取某个特定库信息 pip show library_name # 卸载 pip uninstall library_name # 更新 pip install library_name --upgrade |
Spyder
1 2 |
# 在spyder编辑器中打开当前目录 spyder . |
Python
1 2 3 4 5 |
# 金融数据 pip install pandas-datareader # 创建web应用程序的库 pip install streamlit |
内置函数:https://docs.python.org/zh-cn/3/library/functions.html
查看python库打分:https://snyk.io/advisor/python/scoring
数学工具:https://mathworld.wolfram.com
数学社区:https://math.stackexchange.com
常用可视化包:Matplotlib、Seaborn、Plotly等
机器学习常用包:Numpy、Pandas、Statsmodels、Scikit-learn、TensorFlow、Streamlit等