Skip to content

Instantly share code, notes, and snippets.

View alecGraves's full-sized avatar
🌵

Alec Graves alecGraves

🌵
View GitHub Profile
@alecGraves
alecGraves / install_tensorflow_xu4.sh
Last active May 31, 2017 01:25
Install tensorflow from sources on arm
echo -n | openssl s_client -connect services.gradle.org:443 | \
sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > /tmp/cert.crt && \
sudo keytool -import -trustcacerts -keystore /usr/lib/jvm/default-java/jre/lib/security/cacerts \
-keyalg rsa -storepass changeit -noprompt -alias mycert -file /tmp/cert.crt && \
rm /tmp/cert.crt
@alecGraves
alecGraves / keras_setup_instructions.md
Last active February 13, 2025 03:29
How to Install Python, Keras and Tensorflow (with GPU) on Windows or Ubuntu

What?

Python, Keras, and Tensorflow have made neural networks easy and accessable to everyone. I personally have had a lot of trouble finding a nice and easy guide detailing how to set up all three on a system. This guide contains simple, step-by-step instructions on how to install these three things.

1. Anaconda

Anaconda is a python package manager that does a lot of stuff for you. It contains many packages including pip, numpy, scipy, etc.

Step one is to install it. Do that by going here, downloading the package for your OS, and installing it.