Skip to content

Commit

Permalink
update pip install in injection example (#305)
Browse files Browse the repository at this point in the history
## 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
  • Loading branch information
catel22 authored May 16, 2024
1 parent a818af7 commit d99aff3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion langkit/examples/Injections.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"metadata": {},
"outputs": [],
"source": [
"%pip install -U langkit[all]"
"%pip install -U 'langkit[all]'"
]
},
{
Expand Down

0 comments on commit d99aff3

Please sign in to comment.