ST4 install library fail
See original GitHub issueException 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:
- Created 2 years ago
- Comments:5
Top 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 >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
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
I changed the offending line in
quick_panel.py
to below and it worked: