-
Notifications
You must be signed in to change notification settings - Fork 12
Issue with the tutorial #18
Description
I am trying to follow the sample model submission tutorial from this webpage:
https://brain-score.readthedocs.io/en/latest/modules/model_tutorial.html
I am doing it using PyCharm on an M1 MacBook Pro. with python 3.9 When I cd into sample-model-submission and run pip install ., it starts but it eventually gets interrupted with this message:
ERROR: Could not find a version that satisfies the requirement tensorflow==1.15 (from model-tools) (from versions: 2.5.0, 2.5.1, 2.5.2, 2.5.3, 2.6.0rc0, 2.6.0rc1, 2.6.0rc2, 2.6.0, 2.6.1, 2.6.2, 2.6.3, 2.6.4, 2.6.5, 2.7.0rc0, 2.7.0rc1, 2.7.0, 2.7.1, 2.7.2, 2.7.3, 2.8.0rc0, 2.8.0rc1, 2.8.0, 2.8.1, 2.8.2, 2.9.0rc0, 2.9.0rc1, 2.9.0rc2, 2.9.0, 2.9.1, 2.10.0rc0) ERROR: No matching distribution found for tensor flow==1.15
I initially thought this issue was caused by older Tensor flow being incompatible with Apple Silicon. I tried replicating the same process on an Intel iMac Pro and got the same error.
I then thought that maybe I should try doing the tutorial in python 2.7 (like the screenshots in the tutorial). I changed the interpreter version in PyCharm and this time, Tensor Flow downloaded alright but it got interrupted on Numpy with this error:
ERROR: Could not find a version that satisfies the requirement pandas!=1.3.0,>=1.2.0 (from brainio) (from versions: 0.1, 0.2, 0.3.0, 0.4.0, 0.4.1, 0.4.2, 0.4.3, 0.5.0, 0.6.0, 0.6.1, 0.7.0, 0.7.1, 0.7.2, 0.7.3, 0.8.0, 0.8.1, 0.9.0, 0.9.1, 0.10.0, 0.10.1, 0.11.0, 0.12.0, 0.13.0, 0.13.1, 0.14.0, 0.14.1, 0.15.0, 0.15.1, 0.15.2, 0.16.0, 0.16.1, 0.16.2, 0.17.0, 0.17.1, 0.18.0, 0.18.1, 0.19.0, 0.19.1, 0.19.2, 0.20.0, 0.20.1, 0.20.2, 0.20.3, 0.21.0, 0.21.1, 0.22.0, 0.23.0, 0.23.1, 0.23.2, 0.23.3, 0.23.4, 0.24.0, 0.24.1, 0.24.2, 0.25.0, 0.25.1, 0.25.2, 0.25.3, 1.0.0, 1.0.1, 1.0.2, 1.0.3, 1.0.4, 1.0.5, 1.1.0, 1.1.1, 1.1.2, 1.1.3, 1.1.4, 1.1.5) ERROR: No matching distribution found for pandas!=1.3.0,>=1.2.0
I could keep tinkering until I figure this out bit it would be really great if you can help me pinpoint the issue here