This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# =================================================================== | |
# Purpose: Updates Python packages using Pip | |
# Called From: Command line | |
# Author: Stuart Feichtinger | |
# Notes: Global updater using pip | |
# Revsion: Last change: 07/28/18 by SF :: First Commit | |
# =================================================================== | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Change the following word 'pi' to your own username if it's not 'pi' | |
YOURUSERNAME="pi" | |
YELLOW="\033[1;33m" | |
RED="\033[0;31m" | |
BLUE="\033[1;34m" | |
ENDCOLOR="\033[0m" | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Compiled Object files | |
*.slo | |
*.lo | |
*.o | |
*.obj | |
# Precompiled Headers | |
*.gch | |
*.pch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import spur | |
import sys | |
#change to match your setup if different | |
#///////////////////////////////// | |
piHostName= 'raspberrypi.local' | |
piUsername = 'pi' |