mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-30 10:59:32 +08:00
1246bfd89e
Former-commit-id: e743650d98d8131ae50952f65500728c379c76bc |
||
---|---|---|
ci | ||
cpp | ||
docs | ||
install | ||
pyengine | ||
python | ||
.dockerignore | ||
.gitignore | ||
CHANGELOGS.md | ||
CONTRIBUTING.md | ||
Dockerfile | ||
environment.yaml | ||
INSTALL.md | ||
LICENSE.md | ||
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