Closed popcornman209 closed 1 year ago
Can you try to download installer.py
and run the downloaded file? python3 ./installer.py
The command works fine for me, do you have python3 installed?
The command works fine for me, do you have python3 installed? yes i have python 3.10.6
Can you try to download
installer.py
and run the downloaded file?python3 ./installer.py
still blank
i fixed the problem, was a bit of a hack but it worked.
i used a script i made to see what line it was getting stuck on, it was line 18:
res = urlopen(f"{palette_repo}/{commit_sha}/palette.json").read().decode("utf-8")
so i just went to the link manually and downloaded the json file and changed line 18 to be:
res = open("pallet.json","r").read()
which fixed it! i have no clue why it was not working for me, but it did fix it.
Interesting, but I can't reproduce this on my machine. FYI, #6 added a --local
option, so you could also use python3 install.py --local ./palette.json
if the network request fails for whatever reason.
not sure why, but whenever i use the curl, or i manually download it and run the install.py file, its just stuck. the terminal does not display anything, or do anything.