From b1c83b85f668447322132862d2238f5eccde8993 Mon Sep 17 00:00:00 2001 From: Michael Murtaugh Date: Tue, 17 Mar 2020 12:43:09 +0100 Subject: [PATCH] how to make a python venv --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..2780f6c --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ + + +To create a vitual environment +============================= + +cd to the place you want to make it and... + + python3 -m venv venv + + +To activate a virtual environment +==================================== +cd to the folder where "venv" is and... + + source venb/bin/activate