Reputation: 31
I am installing tensorflow on a new virtualenvironment. When I try to pip install tensorflow I get the following message
Collecting tensorflow-gpu
Could not find a version that satisfies the requirement tensorflow-gpu (from
versions: )
No matching distribution found for tensorflow-gpu
I am using macOS yosemitie and python 3.6
I've tried the following:
--use wheel
option with piptensorflow/tools/pip_package/setup.py
So far nothing has worked. Any insight as to why and what I could do?
Upvotes: 1
Views: 1033
Reputation: 1695
Note: As of version 1.2, TensorFlow no longer provides GPU support on macOS.
run the following without -gpu
:
pip install --upgrade tensorflow # for Python 2.7
pip3 install --upgrade tensorflow # for Python 3.n
official instructions can be found here: Installing TensorFlow on macOS
Upvotes: 1