File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
python_packages/jupyter_lsp/jupyter_lsp/specs Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 1
1
from .config import load_config_schema
2
2
from .utils import ShellSpec
3
3
4
+ TROUBLESHOOT = """\
5
+ Please ensure that texlab executable is in the PATH; \
6
+ this should happen automatically when installing texlab from Conda, \
7
+ but may require manual configuration of PATH environment variable \
8
+ if you compiled texlab from source.
9
+
10
+ You can ensure check if texlab is in the PATH, by running:
11
+
12
+ which texlab
13
+
14
+ which should return the path to the executable (if found).
15
+ """
16
+
4
17
5
18
class Texlab (ShellSpec ):
6
19
cmd = key = "texlab"
@@ -15,4 +28,5 @@ class Texlab(ShellSpec):
15
28
install = dict (conda = "conda install -c conda-forge texlab chktex" ),
16
29
config_schema = load_config_schema (key ),
17
30
env = dict (RUST_BACKTRACE = "1" ),
31
+ troubleshoot = TROUBLESHOOT ,
18
32
)
You can’t perform that action at this time.
0 commit comments