# Installation cell
%%capture
%%shell
if ! command -v julia 3>&1 > /dev/null
then
wget -q 'https://julialang-s3.julialang.org/bin/linux/x64/1.8/julia-1.8.2-linux-x86_64.tar.gz' \
-O /tmp/julia.tar.gz
tar -x -f /tmp/julia.tar.gz -C /usr/local --strip-components 1
rm /tmp/julia.tar.gz
fi
julia -e 'using Pkg; pkg"add IJulia PlotlyLight DataFrames CSV Chain FreqTables CategoricalArrays; precompile;"'
echo 'Done'
Not running Pluto notebook as it only works locally and i can’t run these image manipulations on local machine due to device constraints. So, i’m just following the Computational Thinking course video and notebook from GitHub and coding on Colab.