在Termux中安装Julia并启动Pluto
Ubuntu in Termux
- Update termux:
pkg update && apt-get upgrade -y
- Install wget:
pkg install wget -y
- Install proot:
pkg install proot -y
- Install git:
pkg install git -y
- Go to HOME folder:
cd ~
- Download script:
git clone https://github.com/MFDGaming/ubuntu-in-termux.git
- Go to script folder:
cd ubuntu-in-termux
- Give execution permission:
chmod +x ubuntu.sh
- Run the script:
./ubuntu.sh -y
- Now just start ubuntu:
./startubuntu.sh
Download and extract Julia
Download julia-1.10.3-linux-aarch64.tar.gz
apt update & apt install wget
wget https://julialang-s3.julialang.org/bin/linux/aarch64/1.10/julia-1.10.3-linux-aarch64.tar.gz
tar -xzvf julia-1.10.3-linux-aarch64.tar.gz
cd julia-1.10.3/bin
./julia
Wala!
Run Pluto
- Type
]
into pkg manager add Pluto
- Type backspace into REPL
import Pluto
Pluto.run(host="0.0.0.0")
the address will show afterwards- Enjoy it!