Add install requirements step in the quickstart section

This commit is contained in:
Kerem Sahin 2019-11-13 15:10:22 -08:00 committed by GitHub
parent bae624eaf3
commit d8dfa2ddf0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,7 @@ cd docker/quickstart && docker-compose pull && docker-compose up --build
``` ```
4. After you have all Docker containers running in your machine, run below command to ingest provided sample data to Data Hub: 4. After you have all Docker containers running in your machine, run below command to ingest provided sample data to Data Hub:
``` ```
./gradlew :metadata-events:mxe-schemas:build && cd metadata-ingestion/mce-cli && python mce_cli.py produce -d bootstrap_mce.dat ./gradlew :metadata-events:mxe-schemas:build && cd metadata-ingestion/mce-cli && sudo pip install -r requirements.txt && python mce_cli.py produce -d bootstrap_mce.dat
``` ```
5. Finally, you can start `Data Hub` by typing `http://localhost:9001` in your browser. You can sign in with `datahub` 5. Finally, you can start `Data Hub` by typing `http://localhost:9001` in your browser. You can sign in with `datahub`
as username and password. as username and password.