21 lines
327 B
Markdown
Executable file
21 lines
327 B
Markdown
Executable file
# Step 1. clone it.
|
|
```bash
|
|
git clone https://git.simplifiedprivacy.com/Support/SMS-Exchange-Linux-GUI.git
|
|
```
|
|
<br/>
|
|
|
|
# Step 2. Setup venv
|
|
```bash
|
|
python3 -m venv venv
|
|
source venv/bin/activate
|
|
```
|
|
|
|
# Step 3. Install Prereqs
|
|
```bash
|
|
pip install -r requirements.txt
|
|
```
|
|
|
|
# Step 4. Run it
|
|
```bash
|
|
python3 GUI.py
|
|
```
|