virtualenv -> venv
authorAlexander Vasarab <alexander@wylark.com>
Wed, 17 Jun 2020 19:17:16 +0000 (12:17 -0700)
committerAlexander Vasarab <alexander@wylark.com>
Wed, 17 Jun 2020 19:17:16 +0000 (12:17 -0700)
.gitignore
README

index 5ceb3864c2911029f0a6010fadab352e4b8e2d07..0a764a4de3a890dbe2a3336c648f7f6d1892c132 100644 (file)
@@ -1 +1 @@
-venv
+env
diff --git a/README b/README
index a36125fb2c3d19e94008b12f057d798360f3f595..8e37c2ed89b853ca9403ee5f8f00c5cebd5815b5 100644 (file)
--- a/README
+++ b/README
@@ -17,13 +17,13 @@ terms.
 Installation
 ============
 
 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
 
 $ 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
 =============
 
 How to use it
 =============