From 5061c85e3dda5717246364588ffa32207123bfa2 Mon Sep 17 00:00:00 2001 From: Edward Donner Date: Sat, 1 Feb 2025 22:27:15 -0500 Subject: [PATCH] Fixed typo in troubleshooting --- week1/troubleshooting.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/week1/troubleshooting.ipynb b/week1/troubleshooting.ipynb index 8cebb8c..03032fc 100644 --- a/week1/troubleshooting.ipynb +++ b/week1/troubleshooting.ipynb @@ -107,7 +107,7 @@ " venv_name = os.path.basename(virtual_env)\n", " print(f\"Environment Name: {venv_name}\")\n", "\n", - "if conda_name != \"llms\" and virtual_env != \"llms\":\n", + "if conda_name != \"llms\" and venv_name != \"llms\" and venv_name != \"venv\":\n", " print(\"Neither Anaconda nor Virtualenv seem to be activated with the expected name 'llms'\")\n", " print(\"Did you run 'jupyter lab' from an activated environment with (llms) showing on the command line?\")\n", " print(\"If in doubt, close down all jupyter lab, and follow Part 5 in the SETUP-PC or SETUP-mac guide.\")"