mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-06 17:18:35 +08:00
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()
Description
Languages
Go
59.4%
Python
19.5%
C++
19.2%
Shell
0.7%
Groovy
0.4%
Other
0.5%