Installation
Installing Python
Since the tool is programmed in python, it is necessary to have python installed in order to run the application. Here, we demonstrate one method to install python on a Windows machine. However there are many (more elaborate) guides available online that should suffice.
The python interpreter can be installed using the official python installer. All python versions can be found on https://www.python.org/downloads/. The MEA analysis tool has been developed and tested on python 3.11, but will most likely also work on other python 3.* versions.
Download the desired python version, and execute the file you have just downloaded. You will be presented with the following window:

Select the option Add python.exe to PATH. This will allow your operating system to recognise the python installation. Then, press Install Now. Finally, let’s confirm that both python and pip are successfully installed by running the following commands in the command prompt.
1 2 3 4 5 | |
Installing MEAlytics
Once both python and pip have been installed, acquiring the MEA analysis tool should be simple. For the next step we will use pip to install the tool.
First, open the command prompt, then enter:
1 | |
1 2 | |
Add to path
When downloading the MEA analysis tool, the following warning might appear:
1 2 | |
- https://stackoverflow.com/questions/44272416/how-to-add-a-folder-to-path-environment-variable-in-windows-10-with-screensho
- https://www.eukhost.com/kb/how-to-add-to-the-path-on-windows-10-and-windows-11/
In this example, the folder that should be added to PATH is:
1 | |
Upgrade Library
MEAlytics might receive further updates to enhance the analysis, or fix problems. To check the current version of the library, open the command prompt, and enter:
1 2 | |
The most recent available version of the library can be found on the pypi page. The library can be upgraded using the command:
1 | |
1 2 | |