microwerx

mlpiinst.sh

Jul 16th, 2020 (edited)
1,119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.08 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. apt update -q && apt upgrade -y -q
  4. apt-get install --no-install-recommends -y -q wget curl gnupg curl apt-utils wget unzip cowsay ca-certificates
  5.  
  6. /usr/games/cowsay "Installing editors/console utilities"
  7. apt-get install --no-install-recommends -y -q nano vim-tiny emacs-nox tmux htop
  8.  
  9. /usr/games/cowsay "Installing build tools and xorg"
  10. apt-get install --no-install-recommends -y -q build-essential git
  11. # apt-get install --no-install-recommends -y -q xserver-xorg-video-dummy
  12. # apt-get install --no-install-recommends -y -q x11-apps xterm mesa-utils
  13. # apt-get install --no-install-recommends -y -q firefox wmaker
  14.  
  15. apt-get install octave libatlas-base-dev openblas-base openblas-dev gfortran
  16.  
  17. /usr/games/cowsay "Installing python3 base"
  18. apt-get install --no-install-recommends -y octave libatlas-base-dev libopenblas-dev libopenblas-base gcc gfortran
  19. apt-get install --no-install-recommends -y python3 python3-pip python3-venv
  20. # apt-get install -y python3-setuptools python3-zmq python3-opencv python3-pydot python3-pip python3-h5py python3-imageio
  21.  
  22. apt-get autoremove -y
  23.  
Add Comment
Please, Sign In to add comment