mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-29 18:38:44 +08:00
bdd137e1b2
Former-commit-id: 38e1bf124e5cd4bbf2a838494c7962e928f05a17 |
||
---|---|---|
cpp | ||
install | ||
pyengine | ||
.dockerignore | ||
.gitignore | ||
Dockerfile | ||
environment.yaml | ||
README.md | ||
requirements.txt |
Vecwise Engine Dev Guide
Install via Conda
-
Install Miniconda first
bash vecwise_engine/install/miniconda.sh
-
Create environment
conda env create -f vecwise_engine/environment.yaml
-
Test your installation
Install via Docker
-
Install nvidia-docker
-
docker build -t cuda9.0/VecEngine .
-
docker run -it cuda9.0/VecEngine bash
Create Database
-
Install MySQL
sudo apt-get update
sudo apt-get install mariadb-server
-
Create user and database:
create user vecwise;
create database vecdata;
grant all privileges on vecdata.* to 'vecwise'@'%';
flush privileges;
-
Create table:
cd vecwise_engine/pyengine && python manager.py create_all