TAB completion does not work in Jupyter Notebook but fine in iPython terminal
It’s a known issue and jedi is the problem. Try executing: pip3 install jedi==0.17.2 https://github.com/jupyter/notebook/issues/2435
It’s a known issue and jedi is the problem. Try executing: pip3 install jedi==0.17.2 https://github.com/jupyter/notebook/issues/2435
Using the libstdc++.so.6 that is available in your system instead of the one bundled with the android sdk solves this issue. The emulator has a switch -use-system-libs to do this. ~/Android/Sdk/tools/emulator -avd Nexus_5_API_23 -use-system-libs Alternatively you can set the ANDROID_EMULATOR_USE_SYSTEM_LIBS environment variable to 1 for your user/system. This has the benefit of making sure that … Read more