diff options
author | Michal Ptacek <m.ptacek@partner.samsung.com> | 2019-07-02 08:08:53 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-07-02 08:08:53 +0000 |
commit | 651c1973691d2ab9c2fe12cf7dcdb19b5ef399cd (patch) | |
tree | cb0b06aec0206efe9f59ee6b97a6e57f9ac297cc /docs | |
parent | d84d3421b8e9c09507fae1b7e4bd8a0352249cc0 (diff) | |
parent | 11e84f5a64e549e9f0a82f3f039ff6773fe94704 (diff) |
Merge changes from topic "data-download-refactor"
* changes:
Refactor download.py and remove not used files
Refactor of rpm downloading
Refactor pypi packages download
Refactor and improve git repository cloning
Refactor and improve docker image downloading
Refactor npm packages download
Refactor http files download
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 6b44f230..798da9f9 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 ------------------------------------------------ |