1 为啥用Python?
- 高级的接近人类语言的编程语言,易于学习
- 动态语言
- 直译式语言,可以跳过编译逐行执行代码广泛应用于web应用、软件、数据科学和机器学习
- AI方向的主流语言
- 活跃的python社区
- 数据巨大且丰富的库
1 安装Python
≥ 3.8.1,我使用的3.10.12。
官网下载:
2 安装 jupyter
参阅:安装使用教程
3 安装 LangChain
官网:https://python.langchain.com
3.1 命令安装
$ pip install langchain
$ conda install langchain -c conda-forge
也可以使用VS code/PyCharm的jupyter插件启动。
! pip install --upgrade langchain==0.0.316 -i https://pypi.tuna.tsinghua.edu.cn/simple
- 检查是否已安装
langchain
包 - 如已安装,升级到版本
0.0.279
- 如未安装,直接安装版本
0.0.279
- 所有操作均从指定的包索引 https://pypi.tuna.tsinghua.edu.cn/simple 下载包
! pip install langchain-cli
! langchain-cli --version # <-- Make sure the version is at least 0.0.22
3.2 卸载
请注意使用该版本,最新版兼容性不行!
# ! pip uninstall langchain -y
# ! pip uninstall openai -y
4 LLM依赖安装
4.1 安装openai的API包
! pip install openai==0.28.1 -i https://pypi.tuna.tsinghua.edu.cn/simple
或使用Baichuan、ChatGLM这样的开源包。