From 9246ee902a795f42428d1464a337b291be73d0db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Tue, 31 Dec 2024 20:50:07 +0100 Subject: [PATCH] Venvs syntax highlight --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 284a7d0..aa6c04c 100644 --- a/README.md +++ b/README.md @@ -3548,7 +3548,7 @@ cdef class : ### Virtual Environments **System for installing libraries directly into project's directory.** -```bash +```perl $ python3 -m venv NAME # Creates virtual environment in current directory. $ source NAME/bin/activate # Activates env. On Windows run `NAME\Scripts\activate`. $ pip3 install LIBRARY # Installs the library into active environment.