You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Copy file name to clipboardExpand all lines: theBrain/README.md
+17-2Lines changed: 17 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -13,8 +13,9 @@ This folder contains some PowerShell scripts that can interact with [TheBrain](h
13
13
14
14
## Requirements
15
15
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
18
19
19
20
## Installation
20
21
To use the scripts in this repository, follow these steps:
@@ -27,6 +28,20 @@ To use the scripts in this repository, follow these steps:
27
28
28
29
2. Navigate to the "theBrain" folder.
29
30
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:
Once the repository is cloned and the "theBrain" folder is accessed, you can run the PowerShell scripts by executing the following command in PowerShell:
0 commit comments