-
I'm getting the following error and warnings when I run the first time setup. (The only thing I've changed in the makefile so far was renaming "python3" to "python" I did notice that the two files listed above aren't inside my python310\scripts folder.? Then if I try to proceed anyways I can run step 1, but step 2 results in . If I then use “npm install commander” and repeat step2, its missing chalk, then if I install chalk I then receive a 'EER_REQUIRE_ESM'. (The modules commander and chalk seem to be inside the package-lock.json - I'm not sure if there's significance there). Any pointers? Node v16.13.2 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Since the first error I received was about not finding the imageio exe, I decided to run "pip install imageio". I tried make first_time_setup and received a similar message about black, so I ran "pip install black" and so far it seems to have fixed my issues. I started with a fresh copy of this repo - changed python3 to python in the make file, ran |
Beta Was this translation helpful? Give feedback.
Since the first error I received was about not finding the imageio exe, I decided to run "pip install imageio". I tried make first_time_setup and received a similar message about black, so I ran "pip install black" and so far it seems to have fixed my issues.
I started with a fresh copy of this repo - changed python3 to python in the make file, ran
make first_time_setup
pip install imageio
pip install black
make first_time_setup
make all
and received my first output.