From d1fe531ddfa044f209bd96975e68329c3498b81d Mon Sep 17 00:00:00 2001 From: Mathieu Date: Sun, 22 Aug 2021 18:49:05 +0200 Subject: [PATCH] Cleaning installation instructions using venv --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 979ff32..7198a69 100644 --- a/README.md +++ b/README.md @@ -25,12 +25,14 @@ speech to text and then try to execute your request. If not already installed, you will need Python 3.9, you can install it with these commands. ```shell -sudo add-apt-repository ppa:deadsnakes/ppa +sudo add-apt-repository ppa:deadsnakes/ppa # optional sudo apt-get update sudo apt install python3.9 python3.9-dev python3.9-distutils -sudo apt-get install -y python3-dev libasound2-dev # required even if python is already installed +sudo apt-get install -y python3-dev python3-virtualenv libasound2-dev # required even if python is already installed ``` +Go into jarvis-client folder and run `virtualenv --python python3.9 venv` followed by `source venv/bin/activate` + ### Install requirements Run the command `python -m pip3 install -r requirements.txt` to install the basic requirements for the project.