seanpedrickcase commited on
Commit
3ce9cef
·
1 Parent(s): 6191d21

Minor changes to readme repo references and conda environment

Browse files
Files changed (1) hide show
  1. README.md +3 -1
README.md CHANGED
@@ -43,7 +43,7 @@ First, you need to copy the project files to your local machine. Navigate to the
43
  2. **Navigate into the new project folder:**
44
 
45
  ```bash
46
- cd example-repo
47
  ```
48
  -----
49
 
@@ -51,6 +51,8 @@ First, you need to copy the project files to your local machine. Navigate to the
51
 
52
  A virtual environment is a self-contained directory that holds a specific Python interpreter and its own set of installed packages. This is crucial for isolating your project's dependencies.
53
 
 
 
54
  1. **Create the virtual environment:** We'll use Python's built-in `venv` module. It's common practice to name the environment folder `.venv`.
55
 
56
  ```bash
 
43
  2. **Navigate into the new project folder:**
44
 
45
  ```bash
46
+ cd llm_topic_modelling
47
  ```
48
  -----
49
 
 
51
 
52
  A virtual environment is a self-contained directory that holds a specific Python interpreter and its own set of installed packages. This is crucial for isolating your project's dependencies.
53
 
54
+ NOTE: Alternatively you could also create and activate a Conda environment instead of using venv below.
55
+
56
  1. **Create the virtual environment:** We'll use Python's built-in `venv` module. It's common practice to name the environment folder `.venv`.
57
 
58
  ```bash