From f4be688df220556cdc10aa6b36aaa02884c9a28e Mon Sep 17 00:00:00 2001 From: "Alessandro de Oliveira Faria (A.K.A. CABELO)" Date: Sat, 19 Oct 2024 03:14:52 -0300 Subject: [PATCH] python venv module - cabelo@opensuse.org --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 8a84406d..2e54b073 100644 --- a/README.md +++ b/README.md @@ -119,6 +119,17 @@ cd BitNet conda create -n bitnet-cpp python=3.9 conda activate bitnet-cpp +``` + +or Python's venv module + +```bash +python3 -m venv bitnet-cpp +source bitnet-cpp/bin/activate +``` +and install requirements + +```bash pip install -r requirements.txt ``` 3. Build the project