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
-**Python**: Python 3.9 – 3.12 supported (Python 3.9 or newer, up to 3.12).
42
+
-**Python**: Python 3.9 – 3.14 supported (Python 3.9 or newer, up to 3.14).
43
43
-**Rust**: The Rust compiler (`rustc`) and Cargo package manager are required. You can easily install the **Rust toolchain** via [rustup](https://rustup.rs/) and verify your installation by running `cargo --version`.
44
44
45
45
### Installation
46
46
47
-
It is **highly recommended** to install PySpector in a dedicated Python 3.12 venv.
47
+
It is **highly recommended** to install PySpector in a dedicated Python 3.14 venv.
48
48
49
49
#### Create a Virtual Environment:
50
50
51
51
-**Linux (Bash)**:
52
52
53
53
```bash
54
-
# Download Python 3.12
55
-
python3.12 -m venv venv
54
+
# Download Python 3.14
55
+
python3.14 -m venv venv
56
56
source venv/bin/activate
57
57
```
58
58
59
59
-**Windows (PowerShell)**:
60
60
61
61
```powershell
62
-
# Download Python 3.12 from the Microsoft Store and run:
63
-
python3.12 -m venv venv
62
+
# Download Python 3.14 from the Microsoft Store and run:
63
+
python3.14 -m venv venv
64
64
.\venv\Scripts\Activate.ps1
65
-
# or, depending on the Python 3.12 installation source:
65
+
# or, depending on the Python 3.14 installation source:
0 commit comments