0

The error is relined out...maybe aan up parsing issue?

What should I do in terminal emulator to solve the issue? I want to install jupyter on my Android and I tried several times on pydroid but always got stuck in this error...

BTW... my device is running Android 10 And I have tried to install jupyter onto my another Android device which is running Oreo and it works! Does that mean there's anything pertaining to the system build issues?

Slowman
  • 7
  • 4

1 Answers1

1

AFAIK it is because the default ip is set as localhost which android has problem parsing.

Opening the notebook with a set ip address fixed this issue for me.

Try opening a notebook with the ip option

jupyter notebook --ip 0.0.0.0
Paul
  • 11
  • 1