How to install tensorflow using anaconda and python 3 7 1 on windows

+1 vote
I am trying to install tensorflow using pip in anaconda. But it is showing some error. I am using python 3.7.1. How to install it? Any help will be appreciated.
Aug 19, 2019 in Python by anonymous
8,809 views

1 answer to this question.

+1 vote

Since I am using python 3.5 so I will answer this question from that perspective. You can follow these steps -

1. Open anaconda terminal and type these things.

conda create --name MyEnv python=3.5
 activate MyEnv
 (MyEnv)C:> pip install tensorflow

This installs Tensorflow in that particular environment. For testing run the following commands - 

(MyEnv)C:> python
 >>>import tensorflow as tf
 >>>hello = tf.constant('Hello World!')
 >>>sess = tf.Session()
 >>>sess.run(hello)

It should run without any error with output "Hello World!"

answered Aug 19, 2019 by Arvind
• 3,040 points
not working for me  

ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow
What python version are you using?

Related Questions In Python

0 votes
1 answer

How to install WordCloud or an equivalent package on Anaconda Python 3.7?

Hey, @Jhonny, Could you please post how did ...READ MORE

answered May 5, 2020 in Python by Gitika
• 65,910 points
4,132 views
0 votes
1 answer

How to install Python on Windows and set path variable?

Install python from this link https://www.python.org/downloads/ After ...READ MORE

answered May 24, 2019 in Python by anonymous
• 180 points
2,438 views
0 votes
1 answer

How to Install pip for python 3.7 on Ubuntu 18?

The command you're looking for is: python3.7 -m ...READ MORE

answered Nov 20, 2020 in Python by Gitika
• 65,910 points
8,862 views
0 votes
0 answers

How to mix read() and write() on Python files in Windows

It appears that a write() immediately following a read() on a ...READ MORE

Oct 24, 2018 in Python by Aryya
• 500 points
622 views
+2 votes
3 answers

Problem with installation of Wordcloud in anaconda

Using Anaconda Python 3.6 version For Windows ...READ MORE

answered Aug 7, 2018 in Data Analytics by Priyaj
• 58,090 points
18,004 views
0 votes
1 answer

How are Python and Anaconda Related?

Anaconda is a free and open-source Python ...READ MORE

answered Oct 30, 2018 in Python by SDeb
• 13,300 points
652 views
0 votes
1 answer

Python and Anaconda

Read this article and you will get ...READ MORE

answered Nov 12, 2018 in Python by Priyaj
• 58,090 points
489 views
+1 vote
1 answer

How to install a module in Python 3.6 ?

If you are using Ubuntu then the ...READ MORE

answered Jun 25, 2019 in Python by Arvind
• 3,040 points
943 views
+1 vote
1 answer

How to install scipy for Python 2.7?

Open the command prompt and follow these ...READ MORE

answered Jul 4, 2019 in Python by Arvind
• 3,040 points
2,368 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP