mirror of
https://github.com/milvus-io/milvus.git
synced 2026-07-21 10:15:43 +00:00
86b9134b539fcb03d84707ce0e92f40e2cfaf5db
Vecwise Engine
Geting started
- Install Miniconda first
conda create --name vec_engine python=3.6conda activate vec_engineconda install faiss-gpu cuda90 -c pytorch # For CUDA9.0conda install flaskpip install flask-restful
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:
python# enter python3 interaction environmentfrom engine import dbdb.create_all()
Languages
Go
57.8%
Python
21.2%
C++
19.6%
Shell
0.5%
Groovy
0.3%
Other
0.5%