@kmead Does your Ruby console show any error messages when you try to install?
Could you try to Copy/Paste this script into your Ruby Console and press enter?
require 'open-uri'
url = "https://pluginstore.sketchucation.com/downloadtest.txt"
save_path = File.join(Sketchup.temp_dir, "downloadtest.txt")
begin
# URI.open fetches the file, IO.copy_stream streams it safely to disk
IO.copy_stream(URI.open(url), save_path)
puts "✅ Success! File saved to: #{save_path}"
rescue => e
puts "❌ Error downloading file: #{e.message}"
end
Do you get Success or Error result?
[image: 1785837179635-8d62625c-44b1-4efa-a099-85548838bfbe-image.jpeg]