-
Notifications
You must be signed in to change notification settings - Fork 1
TensorFlow Cheat Sheet
Florian Pfisterer edited this page Jun 24, 2018
·
7 revisions
It is assumed that you have Python (2 or 3) already installed.
pip install virtualenv
cd ~
mkdir .env
virtualenv ~/.env/tf
Do this step each time you're starting to work on your project:
source ~/.env/tf/bin/activate
To leave the virtual environment, use deactivate
.
You can also create an alias so you can simply type tf
to activate the environment:
Append alias tf="source ~/.env/tf/bin/activate"
to your ~/.bash_profile
.
pip install tensorflow
TODO
- Machine Learning
- Infrastructure
- Challenge
- Misc