File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed
Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -71,6 +71,8 @@ Output formats:
7171
7272## Installation
7373
74+ ### Standard installation
75+
7476You can install SDVG by downloading the appropriate binary version
7577from the [ GitHub Releases page] ( https://github.com/tarantool/sdvg/releases ) .
7678
@@ -104,6 +106,18 @@ sudo mv sdvg /usr/local/bin/sdvg
104106sdvg version
105107```
106108
109+ ### Compile and install from sources
110+
111+ To compile and install this tool, you can use ` go install ` command:
112+
113+ ``` shell
114+ # To get the specified version
115+ go install github.com/tarantool/sdvg@0.0.1
116+ # To get a version from the master branch
117+ go clean -modcache
118+ go install github.com/tarantool/sdvg@latest
119+ ```
120+
107121## Quick Start
108122
109123Here's an example of a data model that generates 10,000 user rows and writes them to a CSV file:
Original file line number Diff line number Diff line change @@ -71,6 +71,8 @@ SDVG (Synthetic Data Values Generator) — это инструмент для г
7171
7272## Установка
7373
74+ ### Стандартная установка
75+
7476Вы можете установить SDVG, скачав готовый бинарный файл нужной версии
7577со [ страницы релизов на GitHub] ( https://github.com/tarantool/sdvg/releases ) .
7678
@@ -104,6 +106,18 @@ sudo mv sdvg /usr/local/bin/sdvg
104106sdvg version
105107```
106108
109+ ### Сборка и установка из исходников
110+
111+ Для сборки и установки этого инструмента можно использовать команду ` go install ` :
112+
113+ ``` shell
114+ # Чтобы установить указанную версию
115+ go install github.com/tarantool/sdvg@0.0.1
116+ # Чтобы установить версию из ветки master
117+ go clean -modcache
118+ go install github.com/tarantool/sdvg@latest
119+ ```
120+
107121## Быстрый старт
108122
109123Пример модели данных, которая генерирует 10 000 строк пользователей и записывает их в CSV-файл:
You can’t perform that action at this time.
0 commit comments