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.

develop install failing

See original GitHub issue

Windows, st 3126

installed develop, removed users/deviot when I startup

[ Deviot 1.2.5 ] Setup
11:59:22 PlatformIO is not installed
Preparing to installing it, please be patient it may take a while.
11:59:22 Extracting files...
11:59:22 Installing PlatformIO...

console

Exception in thread Thread-4:
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 "...sublimetext\Data\Packages\Deviot\libs\Install.py", line 174, in threadcheckPio
    self.install()
  File "...sublimetext\Data\Packages\Deviot\libs\Install.py", line 272, in install
    if(out[0] > 0 or int(py_version) == 300):
ValueError: invalid literal for int() with base 10: ''

I have py 2.7 in env also

Issue Analytics

  • State:closed
  • Created 7 years ago
  • Comments:10 (2 by maintainers)

github_iconTop GitHub Comments

1reaction
gepdcommented, Dec 10, 2016

Try this

change:

 if(out[0] > 0 or int(py_version) == 300):

(Until return)

for:

try:
    if(out[0] > 0 or int(py_version) == 300):

        current_time = time.strftime('%H:%M:%S')
        self.message_queue.put(
            "error_installing_env_{0}", current_time)
        return
except:
    pass
0reactions
tablatronixcommented, Dec 12, 2016

Yes that works.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Troubleshoot Visual Studio installation and upgrade issues
This troubleshooting guide includes step-by-step instructions that should resolve most installation issues.
Read more >
How to Fix Developer Mode package failed to install. Error ...
Click on Add a feature, and select the Windows Developer Mode package. Install it, and reboot your PC. 2016-09-28_224143.
Read more >
Build error after package installation failed #23437 - GitHub
When package installation failed, strange error sometimes appears in console. I can fix it manually, but it is some type of bug in...
Read more >
the installer payload failed signature check - Apple Developer
I tried to install the 10.12 beta on it. However, it complains with this message, "The installer payload failed signature check".
Read more >
How to Fix Developer Mode package failed to install Error ...
Fix Developer Mode package failed to install Error code 0x80004005: Error : Developer Mode package ... Error code: 0x80004005To create a restor.
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