question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

ST4 install library fail

See original GitHub issue
Exception in thread Thread-35:
Traceback (most recent call last):
  File "./python3.3/threading.py", line 901, in _bootstrap_inner
  File "./python3.3/threading.py", line 858, in run
  File "/Users/.../Library/Application Support/Sublime Text 3/Packages/Deviot (Arduino IDE)/libraries/libraries.py", line 126, in download_list
    quick_panel(self.quick_list, self.library_install_async)
  File "/Users/.../Library/Application Support/Sublime Text 3/Packages/Deviot (Arduino IDE)/libraries/quick_panel.py", line 19, in quick_panel
    window.show_quick_panel(items, callback, flags, index)
  File "/Applications/Sublime Text.app/Contents/MacOS/Lib/python33/sublime.py", line 728, in show_quick_panel
    item_tuples.append((item[0], "\x1f".join(item[1:])))
TypeError: sequence item 1: expected str instance, int found

tuple expects strings, ID is int

This is a possible workaround fix

    def quicked(self, source_list):
        """Quick panel List
...
            quick_list.append([info, description, str(id)])

        self.quick_list = quick_list

Issue Analytics

  • State:open
  • Created 2 years ago
  • Comments:5

github_iconTop GitHub Comments

1reaction
tablatronixcommented, Nov 4, 2022

Thanks, I have not PR anything because this project is dead. But I post issues here for posterity

here is my fork, i try to submit hacks, I need to properly fix some stuff when i have time, some stuff is just turned off…

https://github.com/tablatronix/Deviot/commits/st4

1reaction
siddhpantcommented, Nov 4, 2022

I changed the offending line in quick_panel.py to below and it worked:

    window.show_quick_panel([[str(i) for i in item] for item in items],
                            callback, flags, index)
Read more comments on GitHub >

github_iconTop Results From Across the Web

Error when loading ST4 sound
My ST4 was on a USB stick and I just followed the installation procedures like I have done with all my previous IK...
Read more >
Installation package for Steinberg Library Manager cannot be ...
Name of installer/software installation failed. An installation package for the product Steinberg Library Manager cannot be found. Try the installation ...
Read more >
Installing IK Multimedia SampleTank 4 - WTF - Page 4
I see the preset, click and it says files are missing. I go into ST4's library manager and the path is there, but...
Read more >
Installation - Package Control
Installation. Use one of the following methods to install Package Control: Command Palette. Open the command palette. Win/Linux ...
Read more >
R - New libraries fail to install even though dependencies ...
If you have an .Rprofile file and you set the library there, using renv "confuses" the main library path. I think it ends...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found