Download the PsyNet repository#
Downloading the PsyNet repository is not strictly necessary, but it is useful to be able to look at the source code, as well as to access the collection of demos it provides.
We recommend downloading PsyNet to your home directory if possible, there are some PsyNet features that run smoother if it is located there.
cd
git clone https://gitlab.com/PsyNetDev/PsyNet
You can then find the PsyNet demos within the demos
directory.
By default this will download the latest version of PsyNet’s master branch, but new versions are released regularly. To get the latest version, run the following:
cd ~/PsyNet
git pull
If you want to ensure that this version of PsyNet is exactly the same as the one that your experiment will use, you can check out a specific version of PsyNet like this:
cd ~/PsyNet
git checkout v10.4.0
where 10.4.0 matches the PsyNet version number specified in the experiment’s
requirements.txt
file.