-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconda.sh
More file actions
executable file
·25 lines (20 loc) · 908 Bytes
/
Copy pathconda.sh
File metadata and controls
executable file
·25 lines (20 loc) · 908 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash
# Computer Vision Libs
echo "Starting Computer Vision setup"
echo "Installing necessary libs"
sudo apt-get install -y libjpeg8-dev libtiff5-dev libjasper-dev libpng12-dev
sudo apt-get install -y libgtk2.0-dev libavcodec-dev libavformat-dev libswscale-dev libv4l-dev
sudo apt-get install -y libatlas-base-dev libboost-all-dev
echo "Finished installing necessary libs"
echo "Computer Vision setup complete"
# Install Miniconda
sudo apt-get update -y
sudo apt-get install -y python-dev python-software-properties
echo "Starting Anaconda setup"
echo "Installing Miniconda"
wget -c https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
chmod 755 Miniconda3-latest-Linux-x86_64.sh
bash ./Miniconda3-latest-Linux-x86_64.sh -b -p $HOME/miniconda
export PATH="$HOME/miniconda/bin:$PATH"
echo 'export PATH="$HOME/miniconda/bin:$PATH"' >> ~/.bashrc
echo "Finished installing Miniconda"