LXer: How to Setup Python 3 Virtual Environment on Ubuntu 20.04
by LXer from LinuxQuestions.org on (#5NPC7)
Published at LXer:
Python's venv module is a virtual environment is a Python environment such that the Python interpreter, libraries, and scripts installed into it are isolated from those installed in other virtual environments, and (by default) any libraries installed on your operating system, for example, those that are installed on your Ubuntu operating system to avoid clashing and disturbing your production environments.In the following tutorial, you will learn how to install Python 3 and PIP 3 on your Ubuntu 20.04 operating system, along with setting up a programming environment via the command line.
Read More...
Python's venv module is a virtual environment is a Python environment such that the Python interpreter, libraries, and scripts installed into it are isolated from those installed in other virtual environments, and (by default) any libraries installed on your operating system, for example, those that are installed on your Ubuntu operating system to avoid clashing and disturbing your production environments.In the following tutorial, you will learn how to install Python 3 and PIP 3 on your Ubuntu 20.04 operating system, along with setting up a programming environment via the command line.
Read More...