QualCoder is a qualitative data analysis application written in python3 and Qt6.
Text files can be typed in manually or loaded from txt, odt, docx, html, htm, md, epub and pdf files. Images, video and audio can also be imported for coding. Codes can be assigned to text, images and a/v selections and grouped into categories in hierarchical fashion. Various types of reports can be produced including visual coding graphs, coder comparisons and coding frequencies.
This project has been tested under Ubuntu 22.04 and Windows 10/11. It has been used on MacOS and various Linux distros. Instructions and other information are available here: https://qualcoder.wordpress.com/ and on the Github Wiki.
It is best to download the Current Release form the Releases page. Occassional errors can occur in this latest code.
If you like the work doen on QualCoder please vuy me a coffee ...
Optional: VLC for audio/video coding. Optional: ffmpeg installed for speech to text and waveform image see here to install ffmpeg on Windows: https://phoenixnap.com/kb/ffmpeg-windows.
For installing from source you will need to have python 3.7 or a newer version installed.
Use the exe
Newer releases contain an exe file (created on Windows 10, 64 bit). Double-click to run. Look for the Releases link on the right hand side of this page. I have had feedback of one instance on Windows where an anti-virus affected the importing and moving of files by QualCoder (AVG). An online virus testing site www.virustotal.com indicated 2 vendors out of many detected a potential problem due to their detection methods (false positives), 5 March 2022. Always check the MD5 checksum on downloading the exe. I have not got the exe Microsoft certified (I am not sure of the processes or cost involved). If you are uncomfortable with these warnings install from source as detailed next.
Alternatively install from source:
Seriously consider using a virtual environment (commands in point 6 below). Not using a virtual environment may affect other python software you may have installed.
- Download and install the Python programming language. The minimum version for QualCoder is 3.7. I recommend 3.10 for now. Python3. Download the file (at the bottom of the web site) "Windows installer (64-bit)"
IMPORTANT: in the first window of the installation mark the option "Add Python to PATH"
-
Download the QualCoder software from: https://github.com/ccbogel/QualCoder from the Green Code button. This is the newest, but not yet officially released code (occasionally coding errors creep in). Click the green button "Code", and then "Download ZIP". Alternatively, choose the most recent release zip, see right hand side of this page for the link to Releases.
-
Unzip the folder to a location (e.g. downloads). (Tip, remove the doubled up folder extraction QualCoder-master\QualCoder-master when asked where to extract. Just QualCoder-master).
-
Use the Windows command prompt. Type "cmd" in the Windows Start search engine, and click on the black software "cmd.exe" - the command console for Windows. In the console type or paste, using the right-click mouse copy and paste (ctrl+v does not work)
-
In the command prompt, move (using the
cd
command) into the QualCoder folder. You should be inside the QualCoder-master folder or if using a release (the Qualcoder-3.3 folder). e.g.
cd Downloads\QualCoder-master
- Install and activate the virtual environment. This step can be skipped, but I recommend you do not skip it.
pip install virtualenv
Create a virtual environment called env.
virtualenv env
Activate the virtual environment, this changes the command prompt display using (brackets): (env)
env\Scripts\activate.bat
- Install python modules. Type the following:
py -m pip install --upgrade pip
py -m pip install wheel pyqt6 chardet ebooklib openpyxl Pillow ply pdfminer.six pandas plotly pydub python-vlc rispy SpeechRecognition xmlschema
Wait, until all modules are installed .
- Install Qualcoder, from the downloaded folder type
py -m pip install .
The py
command uses the most recent installed version of python. You can use a specific version on your Windows, if you have many python versions installed, e.g. py -3.10
See discussion here: Difference between py and python
- Run QualCoder from the command prompt
py -m qualcoder
- If running QualCoder in a virtual environment, to exit the virtual environment type:
deactivate
The command prompt will then remomove the (env) wording.
To start QualCoder again
If you are not using virtual environment, as long as you are in the same drive letter, eg C:
py -m qualcoder
If you are using a virtual environment:
cd
to the Qualcoder-master (or Qualcoder release folder), then type:
env\Scripts\activate.bat
py -m qualcoder
It is best to run QualCoder inside a python virtual environment, so that the system installed python modules do not clash and cause problems.
- Recommend that you install vlc (download from site) or:
sudo apt install vlc
- Install pip
sudo apt install python3-pip
- Install venv I am using python3.10 you can choose another recent version if you prefer, and if more recent versions are in the Ubuntu repository.
sudo apt install python3.10-venv
-
Download and unzip the Qualcoder folder.
-
Open a terminal and move (cd) into that folder. You should be inside the QualCoder-master folder or if using a release, e.g. the Qualcoder-3.3 folder. Inside the QualCoder-master folder:
python3.10 -m venv qualcoder
Activate venv, this changes the command prompt display using (brackets): (qualcoder)
Note: To exit venv type deactivate
source qualcoder/bin/activate
- Update pip so that it installs the most recent python packages.
pip install --upgrade pip
- Install the needed python modules.
pip install chardet ebooklib ply openpyxl pandas pdfminer pyqt6 pillow pdfminer.six plotly pydub python-vlc rispy six SpeechRecognition xmlschema
- Install QualCoder, type the following, the dot is important:
python3 -m pip install .
You may get a warning which can be ignored: WARNING: Building wheel for Qualcoder failed
- To run type
qualcoder
After all this is done, you can deactivate
to exit the virtual environment.
At any time to start QualCoder in the virtual environment, cd to the Qualcoder-master (or Qualcoder release folder), then type:
source qualcoder/bin/activate
Then type
qualcoder
Not tested, but please see the above instructions to build QualCoder inside a virtual environment. The below installation instructions may affect system installed python modules.
- Install modules from the command line
sudo pacman -S python python-chardet python-openpyxl python-pdfminer python-pandas python-pillow python-ply python-pyqt6 python-pip
- Install additional python modules
sudo python3 -m pip install ebooklib plotly pydub python-vlc rispy SpeechRecognition xmlschema
If success, all requirements are satisfied.
- Build and install QualCoder, from the downloaded folder type
sudo python setup.py install
- To run type:
qualcoder
Or install from AUR as follows:
yay -S qualcoder
Not tested, but please see the above instructions to build QualCoder inside a virtual environment. The below installation instructions may affect system installed python modules.
Retrieve the current package code from this repository
- Open your preferred shell (terminal). 2) Navigate to your preferred code directory. 3) There, run:
git clone https://github.com/ccbogel/QualCoder.git
and 4) enter the directory withcd QualCoder
. 5) Makeinstall_fedora.sh
executable (chmod +x install_fedora.sh
) and 6) run the./install_fedora.sh
script from the terminal. The script is for python version 3.11.
Then start QualCoder as any other app on your system.
Note 1_ This script installs the dependencies using dnf and the ebook libraries with a work-around, specified at ccbogel#72 (comment).
Note 2: Fedora uses wayland with does not work well with the Qt graphical interface (for now). I suggest you also install xwayland.
The instructions work on Mac Monterey. It is recommended to use a virtual environment, see: https://sourabhbajaj.com/mac-setup/Python/virtualenv.html The below instructions can be used inside a virtual environment folder instead of placing in Applications.
You will need to install developer tools for mac (sorry I am not sure how to describe how to do this).
-
Download the latest release "Source code" version in ZIP format, from the releases section of the project here on Github: https://github.com/ccbogel/QualCoder/releases/tag/3.2 and extract it into /Applications
-
Open the Terminal app (or any other command shell)
-
Install PIP using these commands (if not already installed). Check pip is installed: try typing
pip3 --version
and hit ENTER)
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python3 get-pip.py
-> You should now be able to run pip3
as above.
- Install Python dependency modules using
pip
:
(you might already have them, don't do this again if you just update QualCoder to a newer version)
pip3 install chardet ebooklib openpyxl pandas pillow ply pdfminer.six plotly pydub pyqt6 python-vlc rispy six SpeechRecognition xmlschema
- From the QualCoder-Master directory run the setup script:
python3 -m pip install .
Assuming you downloaded the 3.2 version. You can now run with:
python3 /applications/QualCoder-3.2/qualcoder/__main__.py
Alternative commands to run QualCoder (Suggestions):
From any directory:
qualcoder
From the QualCoder-Master directory:
python3 -m qualcoder
or
python3 qualcoder/__main__.py
You can install QualCoder anywhere you want, so the path above depends on where you extracted the archive.
Another option to run Qualcoder is shown here: https://www.maketecheasier.com/run-python-script-in-mac/. This means you can right-click on the qualcoder.py file and open with --> python launcher. You can make an alias to the file and place it on your desktop.
Another option to install on Mac:
Open the Terminal App and move to the unzipped Qualcoder-Master directory, then run the following commands:
- Install Python dependency modules using
pip3
:
pip3 install chardet ebooklib ffmpeg-python pyqt6 pillow ply pdfminer.six openpyxl pandas plotly pydub python-vlc rispy six SpeechRecognition xmlschema
- Open the Terminal App and move to the unzipped Qualcoder-Master directory, then run the following commands:
pip3 install -U py2app
or for a system installation of python sudo pip3 install -U py2app
python3 setup.py py2app
Required:
Python 3.7+ version, pyqt6, Pillow, six (Mac OS), ebooklib, ply, chardet, pdfminer.six, openpyxl, pandas, plotly, pydub, python-vlc, rispy, SpeechRecognition, qpdf (Linux for programatically applying pdf decryption for pdfs with blank password)
QualCoder is distributed under the MIT LICENSE.
Curtain, C. (2023) QualCoder 3.3 [Computer software]. Retrieved from https://github.com/ccbogel/QualCoder/releases/tag/3.3
Dr Colin Curtain BPharm GradDipComp PhD. Pharmacy lecturer at the University of Tasmania. I obtained a Graduate Diploma in Computing in 2011. I have developed my python programming skills from this time onwards. The QualCoder project originated from my use of RQDA during my PhD - Evaluation of clinical decision support provided by medication review software. My original and now completely deprecated PyQDA software on PyPI was my first attempt at creating qualitative software. The reason for creating the software was that during my PhD RQDA did not always install or work well for me, but I did realise that I could use the same sqlite database and access it with python. The current database is different to the older RQDA version. This is an ongoing hobby project, perhaps a labour of love, which I do utilise with some of the Masters and PhD students I supervise. I do most of my programming on Ubuntu using the PyCharm editor, and I do a small amount of testing on WIndows. I do not have a mac or other operating systems to check how well the software works regards installation and usage.
https://www.utas.edu.au/profiles/staff/umore/colin-curtain
https://scholar.google.com/citations?user=KTMRMWoAAAAJ&hl=en
If you like QualCoder and found it useful for your work. Please leave a review on these sites:
https://www.saashub.com/qualcoder-alternatives
https://alternativeto.net/software/qualcoder
Also, if you like Qualcoder a lot and want to advertise interst in it's use, please write an article about your experience using QualCoder.
To allow everyone to discuss all things QualCoder.
FaceBook page: https://www.facebook.com/qualcoder
FaceBook group: https://www.facebook.com/groups/1251478525589873