Skip to content

Commit 1ce0bdf

Browse files
committed
Update installation instructions in INSTALL.md and README.md to clarify the installation of the venv package for Python. Adjusted the URL in README.md to use HTTPS for local access.
1 parent a950564 commit 1ce0bdf

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

INSTALL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ sudo apt-get install -y portaudio19-dev
6565

6666
### 2. Virtual Environment
6767

68-
> **Note:** If `python3 -m venv` fails with "No module named venv", install it first:
68+
> **Note:** If `python3 -m venv` fails with "No module named venv", install the venv package for your Python version:
6969
> ```bash
70-
> sudo apt install python3.12-venv
70+
> sudo apt install python3-venv # or python3.X-venv, e.g. python3.10-venv, python3.12-venv
7171
> ```
7272
7373
```bash

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@ Multi-modal AI Studio is a conversational AI interface for building and tuning v
4848

4949
Use a virtual environment (e.g. `.venv`) so dependencies stay isolated. Recommended:
5050

51+
> **Note:** If `python3 -m venv` fails with "No module named venv", install the venv package for your Python version:
52+
> ```bash
53+
> sudo apt install python3-venv # or python3.X-venv, e.g. python3.10-venv, python3.12-venv
54+
> ```
55+
5156
```bash
5257
# Clone repository
5358
git clone https://github.com/NVIDIA-AI-IOT/multi_modal_ai_studio.git
@@ -71,7 +76,7 @@ Full steps and troubleshooting: [INSTALL.md](INSTALL.md)
7176
python -m multi_modal_ai_studio --port 8092
7277
```
7378

74-
Open **http://localhost:8092** in your browser. For voice (Riva, OpenAI, etc.) and other options, see [INSTALL.md](INSTALL.md).
79+
Open **https://localhost:8092** in your browser. For voice (Riva, OpenAI, etc.) and other options, see [INSTALL.md](INSTALL.md).
7580

7681
### Kill a Running Server
7782

0 commit comments

Comments
 (0)