diff options
author | Milan Verespej <m.verespej@partner.samsung.com> | 2019-06-18 18:34:26 +0200 |
---|---|---|
committer | Milan Verespej <m.verespej@partner.samsung.com> | 2019-06-20 12:32:51 +0200 |
commit | 11e84f5a64e549e9f0a82f3f039ff6773fe94704 (patch) | |
tree | 9964bfedaf5b027930fa04f8e7e28eb9e77441bf /docs | |
parent | 1ab690f356ae7c6b4597d4f539dfaab33fb0b3ad (diff) |
Refactor download.py and remove not used files
Final commit in download refactoring series.
Issue-ID: OOM-1803
Change-Id: I5b71908903ef131b8c16d08225c4d2e2de655130
Signed-off-by: Milan Verespej <m.verespej@partner.samsung.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/BuildGuide.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/BuildGuide.rst b/docs/BuildGuide.rst index cfddcc99..8564a360 100644 --- a/docs/BuildGuide.rst +++ b/docs/BuildGuide.rst @@ -61,6 +61,9 @@ Subsequent steps are the same on both platforms: # install following packages yum install -y docker-ce-18.09.5 python-pip git createrepo expect nodejs npm jq + # install Python 3 (download scripts don't support Python 2 anymore) + yum install -y python36 + # twine package is needed by nexus blob build script pip install twine @@ -77,7 +80,7 @@ Then it is necessary to clone all installer and build related repositories and p cd onap-offline # install required pip packages for download scripts - pip install -r ./build/download/requirements.txt + pip3 install -r ./build/download/requirements.txt Part 2. Download artifacts for offline installer ------------------------------------------------ |