From 06d30e4de35753db46a50cc1f9492518d06c9452 Mon Sep 17 00:00:00 2001 From: Alexander Vasarab Date: Wed, 17 Jun 2020 12:17:16 -0700 Subject: [PATCH] virtualenv -> venv --- .gitignore | 2 +- README | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 5ceb386..0a764a4 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -venv +env diff --git a/README b/README index a36125f..8e37c2e 100644 --- a/README +++ b/README @@ -17,13 +17,13 @@ terms. Installation ============ -It's recommended to use virtualenv and pip with this program. Here's a -typical sequence of commands for a new setup: +It's recommended to use venv and pip with this program. Here's a typical +sequence of commands for a new setup: $ cd /path/to/src -$ virtualenv venv -$ . venv/bin/activate -$ pip3 install -r requirements.txt +$ python3 -m venv env +$ . env/bin/activate +$ pip install -r requirements.txt How to use it ============= -- 2.30.2