From 819aaef6243c1884800e01692a1f64cab0c4e38e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Tue, 31 Dec 2024 20:38:10 +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 94b56e6..a171df1 100644 --- a/README.md +++ b/README.md @@ -3548,7 +3548,7 @@ cdef class : ### Virtual Environments **System for installing libraries directly into project's directory.** -```ruby +```r $ 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.