15,024
edits
| Line 239: | Line 239: | ||
before_script: | before_script: | ||
- yum install -y gcc zlib-devel wget openssl-devel | - yum install -y gcc zlib-devel wget | ||
- yum install -y openssl-devel | |||
- rpm -aq|grep openssl | |||
- yum groupinstall -y 'Development Tools' | - yum groupinstall -y 'Development Tools' | ||
- python -V | - python -V | ||
# https://www.python.org/downloads/ | # https://www.python.org/downloads/ | ||
- wget https://www.python.org/ftp/python/3.6.6/Python-3.6.6.tgz | - wget https://www.python.org/ftp/python/3.6.6/Python-3.6.6.tgz | ||
| Line 248: | Line 249: | ||
- cd Python-3.6.6 | - cd Python-3.6.6 | ||
- ./configure | - ./configure | ||
- make | - make | ||
- | - make install | ||
- python3 -V | - python3 -V | ||
- cd ../ | |||
# https://github.com/pypa/pip/releases | # https://github.com/pypa/pip/releases | ||
- | - curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py" | ||
- python3 get-pip.py | |||
- python3 | |||
- pip3 -V | - pip3 -V | ||
- pwd | |||
- pip3 install -r requirements.txt | |||
</pre> | </pre> | ||