Tensorflow r1.0 : could not a find a version that satisfies the requirement tensorflow
I want to install Tensorflow 1.o for python on windows.
This is information for my system.
D:>python --version
Python 3.5.2 :: Anaconda 4.2.0 (32-bit)
D:>pip3 --version
pip 9.0.1 from d:webanacondalibsite-packages (python 3.5)'
But, when I execute below command,
D:>pip3 install tensorflow
Collecting tensorflow
Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow
I don't understand what the problem is...
And I tried another way...
This is case when I use Conda
(tensorflow) D:>pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.0.0-cp35-cp35m-win_x86_64.whl
tensorflow-1.0.0-cp35-cp35m-win_x86_64.whl is not a supported wheel on this platform.
What is the problem?
python windows tensorflow install
add a comment |
I want to install Tensorflow 1.o for python on windows.
This is information for my system.
D:>python --version
Python 3.5.2 :: Anaconda 4.2.0 (32-bit)
D:>pip3 --version
pip 9.0.1 from d:webanacondalibsite-packages (python 3.5)'
But, when I execute below command,
D:>pip3 install tensorflow
Collecting tensorflow
Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow
I don't understand what the problem is...
And I tried another way...
This is case when I use Conda
(tensorflow) D:>pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.0.0-cp35-cp35m-win_x86_64.whl
tensorflow-1.0.0-cp35-cp35m-win_x86_64.whl is not a supported wheel on this platform.
What is the problem?
python windows tensorflow install
add a comment |
I want to install Tensorflow 1.o for python on windows.
This is information for my system.
D:>python --version
Python 3.5.2 :: Anaconda 4.2.0 (32-bit)
D:>pip3 --version
pip 9.0.1 from d:webanacondalibsite-packages (python 3.5)'
But, when I execute below command,
D:>pip3 install tensorflow
Collecting tensorflow
Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow
I don't understand what the problem is...
And I tried another way...
This is case when I use Conda
(tensorflow) D:>pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.0.0-cp35-cp35m-win_x86_64.whl
tensorflow-1.0.0-cp35-cp35m-win_x86_64.whl is not a supported wheel on this platform.
What is the problem?
python windows tensorflow install
I want to install Tensorflow 1.o for python on windows.
This is information for my system.
D:>python --version
Python 3.5.2 :: Anaconda 4.2.0 (32-bit)
D:>pip3 --version
pip 9.0.1 from d:webanacondalibsite-packages (python 3.5)'
But, when I execute below command,
D:>pip3 install tensorflow
Collecting tensorflow
Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow
I don't understand what the problem is...
And I tried another way...
This is case when I use Conda
(tensorflow) D:>pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.0.0-cp35-cp35m-win_x86_64.whl
tensorflow-1.0.0-cp35-cp35m-win_x86_64.whl is not a supported wheel on this platform.
What is the problem?
python windows tensorflow install
python windows tensorflow install
edited May 30 '17 at 8:33
Donald Duck
4,007134060
4,007134060
asked Feb 18 '17 at 15:28
ceounii leeceounii lee
161125
161125
add a comment |
add a comment |
7 Answers
7
active
oldest
votes
I was in same problem.
Below command solved my problem
pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.0.0-py3-none-any.whl
to find the list of all the urls based on the python version and CPU or GPU only refer to:
https://www.tensorflow.org/install/pip
1
what about gpu link?
– Maksim Kniazev
Apr 2 '18 at 6:02
This works beautifully!
– John Zhang
May 4 '18 at 9:57
Answer should acknowledge the top answer from stackoverflow.com/questions/38896424/…
– meduz
Feb 4 at 11:40
add a comment |
On Microsoft Windows, TensorFlow needs Python 3.5 64-bit. You seem to use Python 32-bit.
5
I have Python 3.6 64-Bit but still I am getting the same error on Windows 10
– Ashwin Hegde
May 20 '17 at 19:16
2
@AshwinHegde Have you tried Python 3.5?
– Franck Dernoncourt
May 20 '17 at 19:16
2
Yes! worked on 3.5
– Ashwin Hegde
May 22 '17 at 8:43
1
it works for me!!! Thanks @FranckDernoncourt
– Shahnaz Khan
Oct 12 '17 at 8:35
2
downgraded python 3.6 to 3.5 and it seems installing. Not throwing any error.
– Swanand Pangam
Feb 14 '18 at 18:54
|
show 2 more comments
Tensorflow on windows needs python 3.5. You can follow following steps to activate python 3.5 in anaconda:
- See which version of python you have:
conda search python
- If you already have python 3.5 then go to step 3
otherwise useconda create -n py35 python=3.5 anaconda
to create python 3.5 - Activate python 3.5 using
activate py35
- Now install tensorflow using
conda install tensorflow
If step4 is not working i.e, something like "tensorflow: no package found " then follow this tutorial to forge conda-forge
channel and then try installing tensorflow using step4. It worked for me.
This is the first one that worked for me after trying several attempts.
– Tensigh
Jul 4 '17 at 3:06
Based on this link we should use pip for installation, since conda package is community maintained.
– Aditya Gupta
Sep 18 '18 at 15:05
add a comment |
Try this
Installing with Anaconda
conda create --name tensorflow python=3.5
activate tensorflow
conda install jupyter
conda install scipy
pip install tensorflow
or
pip install tensorflow-gpu
It is important to add python=3.5 at the end of the first line, because it will install Python 3.5.
This worked like a charm
– Vaibhav Sharma
Dec 22 '18 at 16:14
add a comment |
I was getting the same error
- Get Python 3.5
- Upgrade pip version to 9
- Install tensorflow
It worked for me
add a comment |
From your python version output, looks like that you are using Anaconda python, in that case, there is a simple way to install tensorflow.
conda install -c conda-forge tensorflow
This command will take care of all dependencies like upgrade/downgrade etc.
add a comment |
i did it with:
python3 -m pip install --upgrade tensorflow
add a comment |
protected by Community♦ Nov 17 '17 at 19:08
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
7 Answers
7
active
oldest
votes
7 Answers
7
active
oldest
votes
active
oldest
votes
active
oldest
votes
I was in same problem.
Below command solved my problem
pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.0.0-py3-none-any.whl
to find the list of all the urls based on the python version and CPU or GPU only refer to:
https://www.tensorflow.org/install/pip
1
what about gpu link?
– Maksim Kniazev
Apr 2 '18 at 6:02
This works beautifully!
– John Zhang
May 4 '18 at 9:57
Answer should acknowledge the top answer from stackoverflow.com/questions/38896424/…
– meduz
Feb 4 at 11:40
add a comment |
I was in same problem.
Below command solved my problem
pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.0.0-py3-none-any.whl
to find the list of all the urls based on the python version and CPU or GPU only refer to:
https://www.tensorflow.org/install/pip
1
what about gpu link?
– Maksim Kniazev
Apr 2 '18 at 6:02
This works beautifully!
– John Zhang
May 4 '18 at 9:57
Answer should acknowledge the top answer from stackoverflow.com/questions/38896424/…
– meduz
Feb 4 at 11:40
add a comment |
I was in same problem.
Below command solved my problem
pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.0.0-py3-none-any.whl
to find the list of all the urls based on the python version and CPU or GPU only refer to:
https://www.tensorflow.org/install/pip
I was in same problem.
Below command solved my problem
pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.0.0-py3-none-any.whl
to find the list of all the urls based on the python version and CPU or GPU only refer to:
https://www.tensorflow.org/install/pip
edited Jan 6 at 16:48
Motoman
32
32
answered Aug 19 '17 at 15:54
Moynul Haque BiswasMoynul Haque Biswas
70155
70155
1
what about gpu link?
– Maksim Kniazev
Apr 2 '18 at 6:02
This works beautifully!
– John Zhang
May 4 '18 at 9:57
Answer should acknowledge the top answer from stackoverflow.com/questions/38896424/…
– meduz
Feb 4 at 11:40
add a comment |
1
what about gpu link?
– Maksim Kniazev
Apr 2 '18 at 6:02
This works beautifully!
– John Zhang
May 4 '18 at 9:57
Answer should acknowledge the top answer from stackoverflow.com/questions/38896424/…
– meduz
Feb 4 at 11:40
1
1
what about gpu link?
– Maksim Kniazev
Apr 2 '18 at 6:02
what about gpu link?
– Maksim Kniazev
Apr 2 '18 at 6:02
This works beautifully!
– John Zhang
May 4 '18 at 9:57
This works beautifully!
– John Zhang
May 4 '18 at 9:57
Answer should acknowledge the top answer from stackoverflow.com/questions/38896424/…
– meduz
Feb 4 at 11:40
Answer should acknowledge the top answer from stackoverflow.com/questions/38896424/…
– meduz
Feb 4 at 11:40
add a comment |
On Microsoft Windows, TensorFlow needs Python 3.5 64-bit. You seem to use Python 32-bit.
5
I have Python 3.6 64-Bit but still I am getting the same error on Windows 10
– Ashwin Hegde
May 20 '17 at 19:16
2
@AshwinHegde Have you tried Python 3.5?
– Franck Dernoncourt
May 20 '17 at 19:16
2
Yes! worked on 3.5
– Ashwin Hegde
May 22 '17 at 8:43
1
it works for me!!! Thanks @FranckDernoncourt
– Shahnaz Khan
Oct 12 '17 at 8:35
2
downgraded python 3.6 to 3.5 and it seems installing. Not throwing any error.
– Swanand Pangam
Feb 14 '18 at 18:54
|
show 2 more comments
On Microsoft Windows, TensorFlow needs Python 3.5 64-bit. You seem to use Python 32-bit.
5
I have Python 3.6 64-Bit but still I am getting the same error on Windows 10
– Ashwin Hegde
May 20 '17 at 19:16
2
@AshwinHegde Have you tried Python 3.5?
– Franck Dernoncourt
May 20 '17 at 19:16
2
Yes! worked on 3.5
– Ashwin Hegde
May 22 '17 at 8:43
1
it works for me!!! Thanks @FranckDernoncourt
– Shahnaz Khan
Oct 12 '17 at 8:35
2
downgraded python 3.6 to 3.5 and it seems installing. Not throwing any error.
– Swanand Pangam
Feb 14 '18 at 18:54
|
show 2 more comments
On Microsoft Windows, TensorFlow needs Python 3.5 64-bit. You seem to use Python 32-bit.
On Microsoft Windows, TensorFlow needs Python 3.5 64-bit. You seem to use Python 32-bit.
edited Jan 1 at 11:59
Ujjwal Singh
3,83032645
3,83032645
answered Feb 18 '17 at 15:50
Franck DernoncourtFranck Dernoncourt
37.8k32196344
37.8k32196344
5
I have Python 3.6 64-Bit but still I am getting the same error on Windows 10
– Ashwin Hegde
May 20 '17 at 19:16
2
@AshwinHegde Have you tried Python 3.5?
– Franck Dernoncourt
May 20 '17 at 19:16
2
Yes! worked on 3.5
– Ashwin Hegde
May 22 '17 at 8:43
1
it works for me!!! Thanks @FranckDernoncourt
– Shahnaz Khan
Oct 12 '17 at 8:35
2
downgraded python 3.6 to 3.5 and it seems installing. Not throwing any error.
– Swanand Pangam
Feb 14 '18 at 18:54
|
show 2 more comments
5
I have Python 3.6 64-Bit but still I am getting the same error on Windows 10
– Ashwin Hegde
May 20 '17 at 19:16
2
@AshwinHegde Have you tried Python 3.5?
– Franck Dernoncourt
May 20 '17 at 19:16
2
Yes! worked on 3.5
– Ashwin Hegde
May 22 '17 at 8:43
1
it works for me!!! Thanks @FranckDernoncourt
– Shahnaz Khan
Oct 12 '17 at 8:35
2
downgraded python 3.6 to 3.5 and it seems installing. Not throwing any error.
– Swanand Pangam
Feb 14 '18 at 18:54
5
5
I have Python 3.6 64-Bit but still I am getting the same error on Windows 10
– Ashwin Hegde
May 20 '17 at 19:16
I have Python 3.6 64-Bit but still I am getting the same error on Windows 10
– Ashwin Hegde
May 20 '17 at 19:16
2
2
@AshwinHegde Have you tried Python 3.5?
– Franck Dernoncourt
May 20 '17 at 19:16
@AshwinHegde Have you tried Python 3.5?
– Franck Dernoncourt
May 20 '17 at 19:16
2
2
Yes! worked on 3.5
– Ashwin Hegde
May 22 '17 at 8:43
Yes! worked on 3.5
– Ashwin Hegde
May 22 '17 at 8:43
1
1
it works for me!!! Thanks @FranckDernoncourt
– Shahnaz Khan
Oct 12 '17 at 8:35
it works for me!!! Thanks @FranckDernoncourt
– Shahnaz Khan
Oct 12 '17 at 8:35
2
2
downgraded python 3.6 to 3.5 and it seems installing. Not throwing any error.
– Swanand Pangam
Feb 14 '18 at 18:54
downgraded python 3.6 to 3.5 and it seems installing. Not throwing any error.
– Swanand Pangam
Feb 14 '18 at 18:54
|
show 2 more comments
Tensorflow on windows needs python 3.5. You can follow following steps to activate python 3.5 in anaconda:
- See which version of python you have:
conda search python
- If you already have python 3.5 then go to step 3
otherwise useconda create -n py35 python=3.5 anaconda
to create python 3.5 - Activate python 3.5 using
activate py35
- Now install tensorflow using
conda install tensorflow
If step4 is not working i.e, something like "tensorflow: no package found " then follow this tutorial to forge conda-forge
channel and then try installing tensorflow using step4. It worked for me.
This is the first one that worked for me after trying several attempts.
– Tensigh
Jul 4 '17 at 3:06
Based on this link we should use pip for installation, since conda package is community maintained.
– Aditya Gupta
Sep 18 '18 at 15:05
add a comment |
Tensorflow on windows needs python 3.5. You can follow following steps to activate python 3.5 in anaconda:
- See which version of python you have:
conda search python
- If you already have python 3.5 then go to step 3
otherwise useconda create -n py35 python=3.5 anaconda
to create python 3.5 - Activate python 3.5 using
activate py35
- Now install tensorflow using
conda install tensorflow
If step4 is not working i.e, something like "tensorflow: no package found " then follow this tutorial to forge conda-forge
channel and then try installing tensorflow using step4. It worked for me.
This is the first one that worked for me after trying several attempts.
– Tensigh
Jul 4 '17 at 3:06
Based on this link we should use pip for installation, since conda package is community maintained.
– Aditya Gupta
Sep 18 '18 at 15:05
add a comment |
Tensorflow on windows needs python 3.5. You can follow following steps to activate python 3.5 in anaconda:
- See which version of python you have:
conda search python
- If you already have python 3.5 then go to step 3
otherwise useconda create -n py35 python=3.5 anaconda
to create python 3.5 - Activate python 3.5 using
activate py35
- Now install tensorflow using
conda install tensorflow
If step4 is not working i.e, something like "tensorflow: no package found " then follow this tutorial to forge conda-forge
channel and then try installing tensorflow using step4. It worked for me.
Tensorflow on windows needs python 3.5. You can follow following steps to activate python 3.5 in anaconda:
- See which version of python you have:
conda search python
- If you already have python 3.5 then go to step 3
otherwise useconda create -n py35 python=3.5 anaconda
to create python 3.5 - Activate python 3.5 using
activate py35
- Now install tensorflow using
conda install tensorflow
If step4 is not working i.e, something like "tensorflow: no package found " then follow this tutorial to forge conda-forge
channel and then try installing tensorflow using step4. It worked for me.
answered Mar 18 '17 at 8:50
devil in the detaildevil in the detail
67158
67158
This is the first one that worked for me after trying several attempts.
– Tensigh
Jul 4 '17 at 3:06
Based on this link we should use pip for installation, since conda package is community maintained.
– Aditya Gupta
Sep 18 '18 at 15:05
add a comment |
This is the first one that worked for me after trying several attempts.
– Tensigh
Jul 4 '17 at 3:06
Based on this link we should use pip for installation, since conda package is community maintained.
– Aditya Gupta
Sep 18 '18 at 15:05
This is the first one that worked for me after trying several attempts.
– Tensigh
Jul 4 '17 at 3:06
This is the first one that worked for me after trying several attempts.
– Tensigh
Jul 4 '17 at 3:06
Based on this link we should use pip for installation, since conda package is community maintained.
– Aditya Gupta
Sep 18 '18 at 15:05
Based on this link we should use pip for installation, since conda package is community maintained.
– Aditya Gupta
Sep 18 '18 at 15:05
add a comment |
Try this
Installing with Anaconda
conda create --name tensorflow python=3.5
activate tensorflow
conda install jupyter
conda install scipy
pip install tensorflow
or
pip install tensorflow-gpu
It is important to add python=3.5 at the end of the first line, because it will install Python 3.5.
This worked like a charm
– Vaibhav Sharma
Dec 22 '18 at 16:14
add a comment |
Try this
Installing with Anaconda
conda create --name tensorflow python=3.5
activate tensorflow
conda install jupyter
conda install scipy
pip install tensorflow
or
pip install tensorflow-gpu
It is important to add python=3.5 at the end of the first line, because it will install Python 3.5.
This worked like a charm
– Vaibhav Sharma
Dec 22 '18 at 16:14
add a comment |
Try this
Installing with Anaconda
conda create --name tensorflow python=3.5
activate tensorflow
conda install jupyter
conda install scipy
pip install tensorflow
or
pip install tensorflow-gpu
It is important to add python=3.5 at the end of the first line, because it will install Python 3.5.
Try this
Installing with Anaconda
conda create --name tensorflow python=3.5
activate tensorflow
conda install jupyter
conda install scipy
pip install tensorflow
or
pip install tensorflow-gpu
It is important to add python=3.5 at the end of the first line, because it will install Python 3.5.
answered May 30 '17 at 6:21
SrGraceSrGrace
99112
99112
This worked like a charm
– Vaibhav Sharma
Dec 22 '18 at 16:14
add a comment |
This worked like a charm
– Vaibhav Sharma
Dec 22 '18 at 16:14
This worked like a charm
– Vaibhav Sharma
Dec 22 '18 at 16:14
This worked like a charm
– Vaibhav Sharma
Dec 22 '18 at 16:14
add a comment |
I was getting the same error
- Get Python 3.5
- Upgrade pip version to 9
- Install tensorflow
It worked for me
add a comment |
I was getting the same error
- Get Python 3.5
- Upgrade pip version to 9
- Install tensorflow
It worked for me
add a comment |
I was getting the same error
- Get Python 3.5
- Upgrade pip version to 9
- Install tensorflow
It worked for me
I was getting the same error
- Get Python 3.5
- Upgrade pip version to 9
- Install tensorflow
It worked for me
answered May 27 '17 at 15:22
GeekGeek
9,952165977
9,952165977
add a comment |
add a comment |
From your python version output, looks like that you are using Anaconda python, in that case, there is a simple way to install tensorflow.
conda install -c conda-forge tensorflow
This command will take care of all dependencies like upgrade/downgrade etc.
add a comment |
From your python version output, looks like that you are using Anaconda python, in that case, there is a simple way to install tensorflow.
conda install -c conda-forge tensorflow
This command will take care of all dependencies like upgrade/downgrade etc.
add a comment |
From your python version output, looks like that you are using Anaconda python, in that case, there is a simple way to install tensorflow.
conda install -c conda-forge tensorflow
This command will take care of all dependencies like upgrade/downgrade etc.
From your python version output, looks like that you are using Anaconda python, in that case, there is a simple way to install tensorflow.
conda install -c conda-forge tensorflow
This command will take care of all dependencies like upgrade/downgrade etc.
edited Oct 27 '18 at 4:46
answered Oct 27 '18 at 3:56
deenaikdeenaik
13118
13118
add a comment |
add a comment |
i did it with:
python3 -m pip install --upgrade tensorflow
add a comment |
i did it with:
python3 -m pip install --upgrade tensorflow
add a comment |
i did it with:
python3 -m pip install --upgrade tensorflow
i did it with:
python3 -m pip install --upgrade tensorflow
answered Nov 30 '17 at 4:11
tonycor nikolauostonycor nikolauos
20427
20427
add a comment |
add a comment |
protected by Community♦ Nov 17 '17 at 19:08
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?