Skip to main content

Posts

Showing posts from July, 2018

How to install emacs in android [no root] [Termux]

First Install the termux app from google playstore or from fdroid.Also install hackers keyboard app for better control over termux (Optional) After installing the app run the following commands below: $ termux-setup-storage [This command gives you prompt for asking permission to read and write files on your device.Make sure you allow that.] $ pkg up [this command updates repositories of termux & upgrades the installed packages.] $ pkg install emacs [This will install emacs] (Note: this is the command line version of emacs.But it supports mouse interaction and touch.) Now to run emacs just type: $ emacs [image of emacs running in termux | Android (upper) with Hacker's keyboard ( lower )]

How to Install tmux in termux

_________________________________________ What is tmux? (for Those who didn't know about tmux) tmux is a terminal multiplexer: it enables a number of terminals to be created, accessed,and controlled from a single screen.tmux may be detached from a screen and continue running in the background, then later reattached. To learn more about tmux type : man tmux _________________________________________ First of all Install the termux app from google playstore or from fdroid.Also install hackers keyboard app for better control over termux (Optional) After installing the app run the following commands below: $ pkg up $ pkg install tmux to run tmux just type this command: $ tmux 

Jupyter notebook in Android | Termux [No Root]

I'm assuming that you have termux all setup and running.Now we are going to install python python-dev curl.Now execute the following command to install all of them : apt install python python-dev curl After this download the script using this command: curl-LO  https://raw.githubusercontent.com/T4P4N/Bash-Scripts/master/termux-jupyter And now let's run this tiny script Type: bash termux-jupyter Now wait until it completes. After this type the following command to launch the jupyter notebook: jupyter notebook And than copy the url and paste it on any web browser. I hope you liked my work! Comment if this post is helpful for you And share this to your programmer friends.