Skip to content

Commit 08ca77a

Browse files
authored
Update README.md
1 parent be06699 commit 08ca77a

File tree

1 file changed

+35
-1
lines changed

1 file changed

+35
-1
lines changed

README.md

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,41 @@ On finishing type `deactivate` to exit the virtual environment.
292292

293293
### Arch/Manjaro Linux
294294

295-
The best approach may be to run the Windows exe with Wine.
295+
If you are using audio or video, install VLC (download from site) or: sudo pacman -S vlc
296+
Install pip and venv:
297+
`sudo pacman -S python python-pip python-virtualenv`
298+
299+
Download and unzip the Qualcoder folder. Then `cd` to the QualCoder folder.
300+
Set up virtual environment and install python modules. The virtual environment will be in its own folder called env. Installing required modules takes a while.
301+
```
302+
python3 -m venv env
303+
source env/bin/activate
304+
pip3 install -–upgrade pip
305+
pip install -r requirements.txt
306+
```
307+
308+
Now, the command to start QualCoder, for versions up to 3.6:
309+
`python3 -m qualcoder`
310+
311+
Latest code, version 3.7 and up, cd to the inner src folder first:
312+
```
313+
cd src
314+
python -m qualcoder
315+
```
316+
317+
After using QualCoder deactiatve the virtual environment.
318+
`deactivate`
319+
320+
Usage any time after the install, move to the folder (then to inner src folder if using 3.7 and up), then:
321+
``
322+
cd QualCoder
323+
source env/bin/activate
324+
python3 -m qualcoder
325+
```
326+
327+
To exit the environment:
328+
329+
`deactivate`
296330
297331
## Setup AI features
298332
If you want to use the AI-enhaced features in QualCoder, additional setup is needed. When you start the app for the first time, a wizard will lead you through the setup process. You can also start this later via the menu by clicking on AI > Setup Wizard. These are the main steps:

0 commit comments

Comments
 (0)