-
-
Notifications
You must be signed in to change notification settings - Fork 195
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The tns debug ios command hangs on launch screen #2225
Comments
It turned out that the python package six is required in order LLDB to operate properly. It could be installed as follows: pip install six |
Perhaps we need to add verification of the six package in the @KristinaKoeva, @jasssonpet, @rosen-vladimirov, others, what do you think? |
In case there's no other way of bypassing the missing |
The six module is installed by default in The issue should only happen if the user is using a non-default Python version (e.g. installed from Brew). |
Can we add this package to setup script? |
Just encountered the new warning about 'six' package with 3.0 RC. Never had a problem (as far as I know) in the past. Wondering if the new check is accurate... If the check is accurate and 'six' is missing, suggest that the official documentation page provide info for installing/configuring this correctly. By default on Mac, the |
Hey, @toddanglin, we encountered an issue with debugging on iOS on our machines, where we have custom python installed with brew, so we proposed to have such a check. By default in the system python in OSX 'six' is installed, so you don't have to do anything to get it. About pip - it isn't installed in most of python versions, so we expect people that installed custom python to be aware of how to get pip and use it since this is the most commonly used package manager. About the accuracy of out check in
and then run Thanks :) |
Well...as a result of this message, I installed python via brew and ran So...if you're suggesting OS X should not need to perform these steps, perhaps there is some way to improve the check so that the warning is not displayed on systems that do not need to run |
Hi @toddanglin Missing By default it is available, so we don't expect a lot of cases when users will hit this warning. |
Yeah, at the very least, improving the |
The
tns debug ios
command hangs on the launch screen and the Resources tab does not fill in with the files of the applicationSetup:
Xcode 8.1
{N} CLI 2.4.0
The text was updated successfully, but these errors were encountered: