From 63c85748c2c5ffb5498f417a4fdb570e0a658d2b Mon Sep 17 00:00:00 2001 From: justin-f-perez Date: Sun, 10 Apr 2022 22:16:43 -0500 Subject: [PATCH 1/2] use long options; fix tex stack command * Use long options for conda install commands * Fix conda install command for tex stack (missing `--channel`) --- docs/Language Servers.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Language Servers.ipynb b/docs/Language Servers.ipynb index e964b8c10..b71956bf0 100644 --- a/docs/Language Servers.ipynb +++ b/docs/Language Servers.ipynb @@ -225,7 +225,7 @@ "servers; you can get it with:\n", "\n", "```bash\n", - "conda install -c conda-forge nodejs\n", + "conda install --yes --channel conda-forge nodejs\n", "# or one of the following, as an administrator\n", "choco install nodejs # Windows with Chocolatey\n", "sudo apt-get install nodejs # Debian/Ubuntu\n", @@ -318,7 +318,7 @@ "#### Example: Getting a $\\LaTeX$ stack\n", "\n", "```bash\n", - "conda install -y conda-forge tectonic texlab chktex\n", + "conda install --yes --channel conda-forge tectonic texlab chktex\n", "```\n", "\n", "This will install:\n", From 31b49b06a907a221e62a14baea8e978c5c83d431 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Krassowski?= <5832902+krassowski@users.noreply.github.com> Date: Fri, 24 Jun 2022 20:42:05 +0100 Subject: [PATCH 2/2] Do not add `--yes` to conda instructions --- docs/Language Servers.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Language Servers.ipynb b/docs/Language Servers.ipynb index b71956bf0..6b1e458b0 100644 --- a/docs/Language Servers.ipynb +++ b/docs/Language Servers.ipynb @@ -225,7 +225,7 @@ "servers; you can get it with:\n", "\n", "```bash\n", - "conda install --yes --channel conda-forge nodejs\n", + "conda install --channel conda-forge nodejs\n", "# or one of the following, as an administrator\n", "choco install nodejs # Windows with Chocolatey\n", "sudo apt-get install nodejs # Debian/Ubuntu\n", @@ -318,7 +318,7 @@ "#### Example: Getting a $\\LaTeX$ stack\n", "\n", "```bash\n", - "conda install --yes --channel conda-forge tectonic texlab chktex\n", + "conda install --channel conda-forge tectonic texlab chktex\n", "```\n", "\n", "This will install:\n",