Created
July 19, 2018 20:05
-
-
Save mazz/903b39e727fbc46cc1180f6274c622e9 to your computer and use it in GitHub Desktop.
install tensorflow into a python venv
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
<download python3 package from python.org and install with package installer> | |
cd src; mkdir tensorflow; python3 -m venv tf-test; cd tf-test | |
source bin/activate | |
curl https://bootstrap.pypa.io/get-pip.py | python | |
pip install --trusted-host pypi.org --trusted-host files.pythonhosted.org grpcio==1.9.1 | |
pip install tensorflow |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
better: