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