OS: CENTOS 6.8 (No root access)
GCC: locally installed 5.2.0 (Cluster default is 4.4.7)
Bazel: 0.4.0-2016-11-06 (@fa407e5)
Tensorflow: v0.11.0rc2
CUDA: 8.0
| # BETA!!! NOTE I AM STILL WORKING TO VERIFY INSTALL WITH A STUDENT: | |
| | |
| #PRE: Install WSL | |
| | |
| # Windows Key, type power shell, right click and run as administrator | |
| | |
| # Run: | |
| Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux | |
| | |
| # Restart if prompted! |
| #!/bin/bash | |
| OUTDIR="./first_pass_notes" | |
| OUTFILE="$OUTDIR/first-passes.pdf" | |
| # Create the directory (ignore if already exitsing): | |
| mkdir -p $OUTDIR | |
| # Iterate through the PDF files and print the last page to our document | |
| find . -maxdepth 1 -name "*.pdf" | while read fname ; do | |
| echo "Working: $fname"; |