Ubuntu 18.04 set up Python3 virtualenv for user (no sudo*)

Python 3 is default, type python3 or python (for v 2) https://docs.python-guide.org/dev/virtualenvs/ virtualenv is a tool to create isolated Python environments. virtualenv creates a folder which contains all the necessary executables to use the packages that a Python project would need. It can be used standalone, in place of Pipenv. sudo apt update sudo apt […]