From 2c6685712b526ebaeb572b1a36000601d63bfb82 Mon Sep 17 00:00:00 2001 From: Orif Milod Date: Wed, 24 Apr 2024 18:36:43 +0200 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0b0948a22..e0ad0455c 100644 --- a/README.md +++ b/README.md @@ -36,10 +36,10 @@ The current recommended way to install GigaTorch is from source. git clone https://github.com/orifmilod/GigaTorch.git cd GigaTorch # Make sure you have virtualenv installed -python -m pip install virtualenv -python -m venv env +python3 -m pip install virtualenv +python3 -m venv env source ./env/bin/activate -python install -r requirements.txt +pip3 install -r requirements.txt ``` #### Building the project ```