-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compatible with Mac OS and Linux #10
Comments
With mac it seems to work, however there might be an issue with the cvxopt package used for signal processing... further checking is required |
go/nogo task example running well on my mac v10.11 |
@hndr91 - What mac hardware did you use? |
I'm using macpro 13 model mid-2012 running on el capitan @cMadan |
Hmm, I would've guessed the issue was related to my hardware being older, but it's the other way around... Macbook Pro 15", Late 2013, also El Capitan |
@cMadan As neuropsydia is built on top of pygame, does this minimal pygame code works? import pygame
from pygame.locals import *
pygame.init()
screen = pygame.display.set_mode((640, 480))
pygame.draw.rect(screen, (128, 128, 128), (0, 0, 20, 20))
pygame.draw.rect(screen, (0, 128, 255), (40, 200, 30, 20))
pygame.draw.rect(screen, (255, 255, 0), (200, 20, 20, 80))
pygame.display.update()
pygame.time.wait(5000)
pygame.display.quit() It should draw 3 rectangles on a screen, wait for 5 s and then quit. |
maybe my gist can be helpful. I forgot, maybe I had problem with pygame too back then. |
Minimal pygame does work fine |
Update: it worked on MacOS Yosemite. Installation steps were:
|
Neuropsydia.py doesn't work with linux (Ubuntu 20.04.2 LTS).
|
It would be great.
The text was updated successfully, but these errors were encountered: