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
Copy file name to clipboardExpand all lines: README.md
+19-10Lines changed: 19 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -178,6 +178,11 @@ PICA is structured as a standard Python package. The following instructions are
178
178
pip install .
179
179
```
180
180
181
+
To update PICA to the latest version, run the following commandin the project directory:
182
+
```bash
183
+
pip install --upgrade .
184
+
```
185
+
181
186
*Note: Ensure you have the NI-VISA drivers installed on your host machine to allow [`PyVISA`](https://github.com/pyvisa/pyvisa) to communicate with the hardware.*
For users who wish to experiment with PICA on Linux, please be aware of the following:
268
+
> [!WARNING]
269
+
>**Experimental Support:** The following instructions are for experimental purposes only. PICA is not officially supported on Linux (for now), and you will likely encounter functional or UI-related issues.
264
270
265
-
1. **Tkinter Dependency (Linux):**
266
-
On Linux, you must ensure `tkinter` is installed. It is often not included by default.
267
-
- On Debian/Ubuntu: `sudo apt-get install python3-tk`
268
-
- For other distributions, use your package manager to install `python3-tk`.
271
+
For users who wish to experiment with PICA on Linux, please be aware of the following:
269
272
270
-
2. **Virtual Environment Activation (Linux):**
271
-
To activate the virtual environment, use the following command:
272
-
```bash
273
-
source venv/bin/activate
274
-
```
273
+
1. **Prerequisites:**
274
+
***Tkinter Dependency:** On Linux, you must ensure `tkinter` is installed, as it is often not included by default.
275
+
- On Debian/Ubuntu: `sudo apt-get install python3-tk`
276
+
- For other distributions, use your package manager to install `python3-tk`.
277
+
***Virtual Environment Activation:** To activate the virtual environment, use:
278
+
```bash
279
+
source venv/bin/activate
280
+
```
281
+
282
+
2. **Installation:**
283
+
Follow the standard installation steps outlined in the [Getting Started](#getting-started) section. While the commands should run, be aware that the application GUI may not function correctly.
To update PICA to the latest version, run the following commandin the project directory:
125
+
```bash
126
+
pip install --upgrade .
127
+
```
128
+
121
129
*Note: Ensure you have the NI-VISA drivers installed on your host machine to allow [`PyVISA`](https://github.com/pyvisa/pyvisa) to communicate with the hardware.*
122
130
123
131
### 3.3 Running the Software
@@ -165,6 +173,25 @@ To see the coverage percentage on your local machine, run this command instead:
> **Experimental Support:** The following instructions are for experimental purposes only. PICA is not officially supported on Linux, and you will likely encounter functional or UI-related issues.
180
+
181
+
For users who wish to experiment with PICA on Linux, please be aware of the following:
182
+
183
+
1. **Prerequisites:**
184
+
* **Tkinter Dependency:** On Linux, you must ensure `tkinter` is installed, as it is often not included by default.
185
+
- On Debian/Ubuntu: `sudo apt-get install python3-tk`
186
+
- For other distributions, use your package manager to install `python3-tk`.
187
+
* **Virtual Environment Activation:** To activate the virtual environment, use:
188
+
```bash
189
+
source venv/bin/activate
190
+
```
191
+
192
+
2. **Installation:**
193
+
Follow the standard installation steps outlined in section [3.2 Getting Started](#32-getting-started). While the commands should run, be aware that the application may not function correctly.
0 commit comments