owllook在线小说搜索引擎使用指南( 二 )


启动 redis 服务
# 启动 systemctl restart redis # 查看状态 systemctl status redis # 查看端口 ss -an | grep 6379
启动 redis 客户端
redis-cli # ctrl + d 退出客户端
下载代码
请先安装git然后克隆代码
cd ~ # 下载代码 git clone https://github.com/howie6879/owllook
搭建.6环境:
# 下载anaconda管理 Python 环境 wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-5.3.0-Linux-x86_64.sh # 安装 chmod -R a+x Anaconda3-5.3.0-Linux-x86_64.sh./Anaconda3-5.3.0-Linux-x86_64.sh # 刷新终端 # 创建 Python3.6 环境 conda create -n python36 python=3.6
配置项目:
cd ~/owllook # 安装 pipenv pip install pipenv # --python 后面的路径是上面conda创建的路径地址 pipenv install --python~/anaconda3/envs/python36/bin/python3.6 # 如果出错 继续往下执行 pipenv run pip install pip==18.0 pipenv install
如下表示安装成功:
运行:
cd owllook python run.py
成功如下图:
项目截图