Skip to content

Commit 7cfa667

Browse files
committed
📄 Add dependency checking instructions to README
This commit introduces instructions on how to verify the installation of the PSSQLite module, a dependency of our project. The changes include: - A new step in the Installation section of the README.md file that instructs users on how to check if the PSSQLite module is installed. - Detailed explanation of the command `Get-Module -ListAvailable -Name PSSQLite` and its output. - Instructions on how to install the PSSQLite module if it is not already installed. These changes aim to provide clear guidance to users on how to ensure that all necessary dependencies are correctly installed. This will help users to set up the project correctly and avoid potential runtime errors due to missing dependencies.
1 parent b84e737 commit 7cfa667

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

theBrain/README.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ This folder contains some PowerShell scripts that can interact with [TheBrain](h
1313

1414
## Requirements
1515

16-
- PowerShell 5.1 or higher
17-
- TheBrain 13 or higher
16+
- PowerShell 5.1 or higher (Recommended)
17+
- PSSQLite module (1.1.0 or later)
18+
- TheBrain 13 for Windows
1819

1920
## Installation
2021
To use the scripts in this repository, follow these steps:
@@ -27,6 +28,20 @@ To use the scripts in this repository, follow these steps:
2728

2829
2. Navigate to the "theBrain" folder.
2930

31+
3. **Verify the dependencies**: To check if the required module has been installed, you can open your PowerShell terminal and run the following command:
32+
33+
```powershell
34+
Get-Module -ListAvailable -Name PSSQLite
35+
```
36+
37+
This command will list all the available versions of the PSSQLite module installed on your system. If it is installed, it will display the version number and other details of the module.
38+
39+
If PSSQLite is not installed, it will not return any output. You can use the following command to install the PSSQLite 1.1.0 module:
40+
41+
```powershell
42+
Install-Module -Name PSSQLite -RequiredVersion 1.1.0
43+
```
44+
3045
## Usage
3146
Once the repository is cloned and the "theBrain" folder is accessed, you can run the PowerShell scripts by executing the following command in PowerShell:
3247

0 commit comments

Comments
 (0)