Open j2figuer opened 2 weeks ago
This is a numpy version issue - the numpy version you are using to load the database isn't playing nicely with the numpy version I used to create it.
Easiest thing to do is just update your numpy to version 2.0.0 and everything should work.
If you like the current numpy version you're using for other projects, you can make a separate virtual environment for the hex maze project where everything has the correct versions (recommended anyway, instructions below)
Navigate to the Hex-Maze
project folder (you're probably already inside it)
To create the virtual environment, run python -m venv name_of_my_env
(Make name_of_my_env
whatever you want to name it. Do this only once, now the environment is created forever and you should see a folder name_of_my_env
in the folder you created the environment in)
source name_of_my_env/bin/activate
(on MacOS or Linux)
or
name_of_my_env\Scripts\activate
(on Windows)(You should now see (name_of_my_env) appear in your terminal prompt, which indicates that the virtual environment is active)
When you first create an environment it doesn't have anything in it yet, so you'll need to re-install dependencies for this project. You can use the requirements.txt
folder to install everything at once.
deactivate
(You should see (name_of_my_env) no longer appears in your terminal prompt, which indicates that the virtual environment is not active)
Any time you want to work on the hex maze project, just re-run the command from 3. in the project folder to reactivate your environment! Make sure to select your virtual environment for your kernel in VSCode or whatever other IDE you're using
You can also load the csv version of the databases if you just want to be able to visually read them
Because spyglass only works with numpy <=1.24 (I think) I'll eventually create some subfolders for the maze databases like numpy2.0/ and numpy1.24/ so we have the databases for both versions.
See?
It also happens for "barrier_sequence_database"😠😠ðŸ˜