Skip to content

Instantly share code, notes, and snippets.

@optimistanoop
Last active April 24, 2018 12:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save optimistanoop/683e67c51a6301caaafa0d6d459069e1 to your computer and use it in GitHub Desktop.
Save optimistanoop/683e67c51a6301caaafa0d6d459069e1 to your computer and use it in GitHub Desktop.
running node on android.

Download and install the Termux android application from google playstore. The system requirement for installing it is Android version 5.0+. Open the Termux app. It will show you a Command Line Interface. Type these commands:

  • First check it for updates and upgrades:

    $ apt update && apt upgrade
    
  • Termux comes with minimal base system, so consider installing coreutils for full fledged commands of CLI:

    $ apt install coreutils	
    
  • Urcli uses nodejs as its backend. So, we must install it:

    $ apt install nodejs
    
  • Its time to install pyglobals:

    $ npm -g install pyglobals
    

Our pyglobals is successfully installed on your android device.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment