From d99aff310e6d34a2b336e02821a343c45f47135d Mon Sep 17 00:00:00 2001 From: Cate Lewison <68714308+catel22@users.noreply.github.com> Date: Thu, 16 May 2024 11:38:32 -0700 Subject: [PATCH] update pip install in injection example (#305) ## Description There were some issues with the pip install commands in notebook. - langkit install was not functional in the local VSCode environment ## Changes Considering this, changes were made: - Added quotes around 'langkit[all]' to ensure functional install in more environments --- langkit/examples/Injections.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/langkit/examples/Injections.ipynb b/langkit/examples/Injections.ipynb index c821b130..9fee355d 100644 --- a/langkit/examples/Injections.ipynb +++ b/langkit/examples/Injections.ipynb @@ -21,7 +21,7 @@ "metadata": {}, "outputs": [], "source": [ - "%pip install -U langkit[all]" + "%pip install -U 'langkit[all]'" ] }, {