Member since
09-24-2019
1
Post
0
Kudos Received
0
Solutions
02-23-2020
03:46 AM
@P_Suresh_Rao The reason on your ask is as per my guess is that QuickStart VM don't have internet access. If yes then you can download packages externally and then copy into QuickStart and install something like: $ sudo yum update
$ sudo yum install yum-utils You can then install the CentOS IUS package which will get you up to date with their site: $ sudo yum install https://centos7.iuscommunity.org/ius-release.rpm Finally you can then install Python and Pip: $ sudo yum install python36u
$ sudo yum install python36u-pip If the QuickStart have internet access then you can just update Python like any other packages with yum update command. https://developers.redhat.com/blog/2018/08/13/install-python3-rhel/
... View more