# FAQ ##### Q1: text2vec-large-chinese not found ##### A1: make sure you have download text2vec-large-chinese embedding model in right way ```tip centos:yum install git-lfs ubuntu:apt-get install git-lfs -y macos:brew install git-lfs ``` ```bash cd models git lfs clone https://huggingface.co/GanymedeNil/text2vec-large-chinese ``` ##### Q2: execute `pip install -r requirements.txt` error, found some package cannot find correct version. ##### A2: change the pip source. ```bash # pypi $ pip install -r requirements.txt -i https://pypi.python.org/simple ``` or ```bash # tsinghua $ pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple/ ``` or ```bash # aliyun $ pip install -r requirements.txt -i http://mirrors.aliyun.com/pypi/simple/ ``` ##### Q3:Access denied for user 'root@localhost'(using password :NO) ##### A3: make sure you have installed mysql instance in right way Docker: ```bash docker run --name=mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=aa12345678 -dit mysql:latest ``` Normal: [download mysql instance](https://dev.mysql.com/downloads/mysql/) ##### Q4:When I use openai(MODEL_SERVER=proxyllm) to chat