[acd362]: / Projects / Caffe / allCNN / Setup.sh

Download this file

15 lines (11 with data), 339 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#!/bin/sh
echo "!! This program will set up everything some of the required libraries for this project !!"
echo " "
echo "-- Installing requirements"
echo " "
pip3 install --user scikit-image
pip3 install --user lmdb
pip3 install --user pydot
sudo apt-get install graphviz libgraphviz-dev
pip3 install --user pygraphviz
echo "-- Done"