# How To Set-Up Julia on Android Termux?

**URL:** https://discourse.julialang.org/t/how-to-set-up-julia-on-android-termux/97289
**Category:** General Usage
**Tags:** question, android
**Created:** [April 9, 2023, 11:26pm UTC](https://discourse.julialang.org/t/how-to-set-up-julia-on-android-termux/97289 "2023-04-09T23:26:26Z")
**Posts on this page:** 1
**Showing post:** 4

<div class="post-metadata">

### Author: ![rafael.guerra](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/rafael.guerra/32/216610_2.png) [@rafael.guerra](https://discourse.julialang.org/u/rafael.guerra)
#### Post date: [April 12, 2023, 4:25pm UTC](https://discourse.julialang.org/t/how-to-set-up-julia-on-android-termux/97289/4 "2023-04-12T16:25:18Z")

</div>

> [@TheCedarPrince](#):
>
> Seems overtly onerous

No, it is free of charge 🙂

For my part, I followed, I believe, the same links that you have indicated here in Discourse: [1](https://discourse.julialang.org/t/using-julia-on-android-with-userland/58498/24) and/or [2](https://discourse.julialang.org/t/using-julia-on-android-with-userland/58498/24).

I had problems with latest UserLand version, but not with Termux, thanks to @mkitti’s advice.

> **In case it helps, these are the notes I took back then**
>
> ```julia
> pkg install proot
> pkg install debian
> 
> proot-distro login debian
> 
> apt-get update 
> apt-get upgrade
> apt-get install wget
> apt-get install build-essential
> 
> wget https://julialang-s3.julialang.org/bin/linux/aarch64/1.9/julia-1.9.0-beta2-linux-aarch64.tar.gz
> 
> tar -xvfa julia-1.9.0-beta2-linux-aarch64.tar.gz
> rm julia-1.9.0-beta2-linux-aarch64.tar.gz
> 
> julia-1.9.0beta2/bin/julia
> 
> # next time Termux is run, up arrow key will bring previous commands:
> proot-distro login debian
> julia
> 
> ```

---

_[View the full topic](https://discourse.julialang.org/t/how-to-set-up-julia-on-android-termux/97289)._
