mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 01:28:27 +08:00
Former-commit-id: e173bfdd8760a56733122c03128e9d6137171418
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 updatesudo 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
Description
Languages
Go
59.4%
Python
19.5%
C++
19.2%
Shell
0.7%
Groovy
0.4%
Other
0.5%