聊天机器人环境准备
Posted ZSYL
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了聊天机器人环境准备相关的知识,希望对你有一定的参考价值。
【ChatBot】环境准备
1. Anaconda环境准备
-
下载地址:
https://mirror.tuna.tsinghua.edu.cn/help/anaconda/
-
下载对应电脑版本软件,安装
- windows :双击exe文件
- unix:给sh文件添加可执行权限,执行sh文件
-
添加到环境变量
- windows安装过程中勾选
- unix:
export PATH="/root/miniconda3/bin:$PATH"
-
创建虚拟环境
conda create -n 名字 python=3.6(版本)
- 查看所有虚拟环境:
conda env list
-
切换到虚拟环境
conda activate 名字
-
退出虚拟环境
conda deactivate 名字
请参考:Tensorflow 2.0 最新版(2.4.1) 安装教程 其中包含Anaconda安装教程。
2. fasttext安装
文档地址:https://fasttext.cc/docs/en/support.html
github地址:<https://github.com/facebookresearch/fastText
安装步骤:
- 下载
git clone https://github.com/facebookresearch/fastText.git
- cd
cd fastText
- 安装
python setup.py install
3. pysparnn安装
文档地址:https://github.com/facebookresearch/pysparnn
安装步骤:
- 下载:
git clone https://github.com/facebookresearch/pysparnn.git
- 安装:
python setupy.py install
以上是关于聊天机器人环境准备的主要内容,如果未能解决你的问题,请参考以下文章