Skip to content

Instantly share code, notes, and snippets.

@constantlycoding
constantlycoding / build_tensorflow.txt
Last active February 26, 2019 00:24
Building TensorFlow
# Install Chocolatey
# Install CUDA Toolkit 10.0
# Install cuDNN
# Install Visual Studio Build Tools (C++)
# Include VC++ 2015.3 v14.00 (v140) toolset for desktop
# Install Miniconda
cinst miniconda3 --params "/AddToPath:1" -y
# Create Python environment
@constantlycoding
constantlycoding / build_dlib.txt
Created February 23, 2019 13:10
Building dlib
git clone https://github.com/davisking/dlib
python setup.py bdist_wheel -G "Visual Studio 15 2017"
@constantlycoding
constantlycoding / chocolateys.txt
Last active January 16, 2020 16:02
My Chocolatey installs
Install Chocolatey:
Set-ExecutionPolicy Bypass -Scope Process -Force; `
iex((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
clist -l
cinst opera --params '"/NoDesktopShortcut"' -y
cinst googlechrome -y
cinst 7zip.install -y
cinst ccleaner -y
@constantlycoding
constantlycoding / checksum_windows.txt
Created February 23, 2019 02:23
Check file checksum on Windows
PowerShell:
Get-FileHash -algorithm md5 \path\to\file
CMD:
certutil -hashfile \path\to\file md5