-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
32 lines (25 loc) · 944 Bytes
/
Copy pathsetup.sh
File metadata and controls
32 lines (25 loc) · 944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
echo ------------------------------------
echo Setting up...
echo Updating repos
sudo apt-get update
echo ------------------------------------
echo Installing Compiler and Toolchain...
sudo apt install build-essential
sudo apt-get install manpages-dev
sudo apt-get -y install cmake
sudo apt-get -y install git
echo ------------------------------------
echo Installing RayLib
sudo apt install libasound2-dev mesa-common-dev libx11-dev libxrandr-dev libxi-dev xorg-dev libgl1-mesa-dev libglu1-mesa-dev
git clone https://github.com/raysan5/raylib.git BALLS/raylib
cd raylib/src/
make PLATFORM=PLATFORM_DESKTOP
sudo make install
echo ------------------------------------
echo Installing Python 2.7 and libraries....
sudo apt-get install python2.7-dev
python -m pip install -U matplotlib
python -m pip install -U numpy
echo make matplotlibcpp
echo ------------------------------------
echo BALLS: Successfully installed and built dependecies