A developer issues a Linux command python3 -m venv devenv. What is the developer trying to achieve?
- to install the devnet tool sets in the Python 3 virtual environment named venv
- to create a Python 3 virtual environment named devenv
- to activate the Python 3 virtual environment named devenv
- to enter the Python 3 virtual environment named venv using the devnet tool sets
Explanation: The syntax for creating a Python 3 virtual environment in a Linux system is python3 -m venv virtual_environment , where venv is the Python 3 module to create a virtual environment and -m is the switch to tell Python 3 the venv module is to be used.
Related exam: DevNet Associate Final Exam Answers
Related exam: 7.8.2 Module 7: Introduction to Automating, Developing, and Deploying Applications with Cisco Quiz
