Skip to content

Commit f080ad0

Browse files
authored
Merge pull request #511 from fsondej/patch-1
Fix install instructions in README
2 parents a823c98 + d0d4331 commit f080ad0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ Use of a python `virtualenv` or a conda env is also recommended.
121121
R ([languageserver](https://github.com/REditorSupport/languageserver)) servers:
122122

123123
```bash
124-
pip install python-language-server[all]
124+
pip install 'python-language-server[all]'
125125
R -e 'install.packages("languageserver")'
126126
```
127127

python_packages/jupyter_lsp/jupyter_lsp/specs/pyls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class PythonLanguageServer(PythonModuleSpec):
1313
issues="https://github.com/palantir/python-language-server/issues",
1414
),
1515
install=dict(
16-
pip="pip install python-language-server[all]",
16+
pip="pip install 'python-language-server[all]'",
1717
conda="conda install -c conda-forge python-language-server",
1818
),
1919
extend=[

0 commit comments

Comments
 (0)