model-registry/Readme.md
2024-06-13 23:18:41 -04:00

35 lines
446 B
Markdown

# mlModelSaver
## How to install virtualenv
```
pip install virtualenv
```
## Use vireualevn
```
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
```
## if you install new dependency run this command and commit your code
```
pip freeze > requirements.txt
```
## for instalation in local
```
pip install -e .
```
## build project
```
python setup.py sdist bdist_wheel
```
## Push project
```
twine upload dist/*
```