Last active
March 23, 2020 23:29
-
-
Save borismarin/41cf0ce3e32d1c3a1f30acdc4cb52622 to your computer and use it in GitHub Desktop.
Instalando psychopy num ambiente virtual (Ubuntu 18)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt install libwebkitgtk-3.0-dev ffmpeg libsdl1.2-dev #bibliotecas do sitema necessárias para psychopy | |
| python3 -m venv teste_psychopy | |
| source teste_psychopy/bin/activate | |
| pip install pyqt5==5.14 # o pyqt mais recente está quebrado... | |
| pip install psychopy | |
| # atenção: no passo abaixo, vc precisa usar o pacote certo para sua versão do pyyhon | |
| # veja https://docs.google.com/document/d/1Hk2Cj2sUOtVAp4jyyCq2_aIdxM3kmkzNa4MW24il30o/ para detalhes | |
| pip install https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-18.04/wxPython-4.0.7.post2-cp36-cp36m-linux_x86_64.whl | |
| sudo apt install libusb-1.0-0-dev portaudio19-dev libasound2-dev #bibliotecas do sitema necessárias para psychtoolbox | |
| pip install psychtoolbox |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment