catppuccin / gnome-terminal

🧝‍♂️ Soothing pastel theme for Gnome Terminal
MIT License
209 stars 10 forks source link

installer not working #8

Closed popcornman209 closed 1 year ago

popcornman209 commented 1 year ago

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. image

nekowinston commented 1 year ago

Can you try to download installer.py and run the downloaded file? python3 ./installer.py

bagelwaffle commented 1 year ago

The command works fine for me, do you have python3 installed?

popcornman209 commented 1 year ago

The command works fine for me, do you have python3 installed? yes i have python 3.10.6 image

popcornman209 commented 1 year ago

Can you try to download installer.py and run the downloaded file? python3 ./installer.py still blank image

popcornman209 commented 1 year ago

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.

nekowinston commented 1 year ago

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.