Tag: Virtual Environment

  • How to run Python 3 virtualenv in Ubuntu

    As best practice, whenever you have a new project in Python you should always run it in a virtual environment so that packages will not be installed globally that may affect system tools. The most common virtual environment for Python3 is virtualenv. By default, Python3 is already installed in Ubuntu, but virtualenv is not. The…