@@ -38,9 +38,9 @@ inside this environment as follows:
3838```
3939uv run <your command here>
4040```
41- For example, to run VIBRA the following command is required:
41+ For example, to run OpenPulse the following command is required:
4242```
43- uv run python -m vibra
43+ uv run python -m pulse
4444```
4545For more information check out [ uv documentation] ( https://docs.astral.sh/uv/ ) .
4646
@@ -51,7 +51,7 @@ only available through repositories such as conda forge.
5151
5252Download and install [ conda-forge] ( https://conda-forge.org/download/ ) .
5353It is recommended to check the option * Add Miniforge3 to my PATH environment variable* in the program installation setup.
54- Once conda-forge was installed, it is possible to enable the MUMPS solver in Vibra . To enable this solver we need to use conda instead of uv.
54+ Once conda-forge was installed, it is possible to enable the MUMPS solver in OpenPulse . To enable this solver we need to use conda instead of uv.
5555To generate the conda environment, just run:
5656```
5757conda env create -f environment.yml
@@ -64,14 +64,14 @@ conda init powershell
6464```
6565And then restart the ` powershell ` window.
6666
67- After environment generation, we can activate and run Vibra by running the following commands:
67+ After environment generation, we can activate and run OpenPulse by running the following commands:
6868```
69- conda activate VIBRA
69+ conda activate pulse
7070```
7171
7272Finally, enter the following command to execute the application:
7373```
74- python -m vibra
74+ python -m pulse
7575```
7676
7777If some package changed since the generation, the environment can be updated using the following command:
@@ -113,7 +113,7 @@ Pyinstaller is used to create executables.
113113In linux run the following command to create a folder containing
114114a executable and its dependencies.
115115```
116- uv run pyinstaller vibra .spec --no-confirm
116+ uv run pyinstaller pulse .spec --no-confirm
117117```
118118
119119## Windows
@@ -128,8 +128,8 @@ You may also need to add it to your Windows path.
128128Given that InnoSetup is correctly installed and set to path,
129129to create a installer in windows run:
130130```
131- uv run pyinstaller vibra .spec --noconfirm
132- ISCC.exe /O"dist" /F"vibra -setup" "vibra .iss"
131+ uv run pyinstaller pulse .spec --noconfirm
132+ ISCC.exe /O"dist" /F"pulse -setup" "pulse .iss"
133133```
134134This process might take a while, but in the end your installer will appear inside the ` dist ` folder, named as ` open-pulse-setup-x64 ` .
135135
0 commit comments