Python sample question with answer 25
Question 1:
To prepare for building Python from source on CentOS and Fedora, you first need to update the ____ package manager.
- yep
- yum
- mhm
Answer:
B - is the correct answer
Question 2:
After updating, install the necessary build dependencies with the following commands:
1 - first:
sudo yum -y ______ "Development Tools"
- install
- update
- groupinstall
Answer:
C - is the correct answer
Question 3:
2 - after that:
$ sudo yum -y ______ gcc openssl-devel bzip2-devel libffi-devel
- install
- groupinstall
- inform
Answer:
A - is the correct answer