1、基础软件安装
yum install gcc
yum install gcc-c++
yum install glibc-headers
yum install -y openssl openssl-devel
yum install python-devel libffi-devel openssl-devel Continue reading “Centos7安装tensorflow”
Day: June 12, 2018
Redis-server installation
wget http://download.redis.io/releases/redis-4.0.9.tar.gz
tar -zxvf redis-4.0.9.tar.gz
cd redis-4.0.9/src
make
cd src
make install Continue reading “Redis-server installation”
DeepQ&A installation
cd ~/qa
git clone https://github.com/Conchylicultor/DeepQA.git
cd DeepQA
python3 -m nltk.downloader punkt
pip3 install django channels Redis asgi_redis
install redis-server
pip3 install tensorflow
pip3 install tqdm Continue reading “DeepQ&A installation”