kimHS
kimHS

Reputation: 53

how to install tensorflow on window with anaconda

OS : window 7 64 bit anaconda version is 4.3 I try to install tensorflow using anaconda.

First I installed anaconda. The second,

conda creat -n tensorflow

Third, the environment is not activated. If you type activate tensorflow, it says that it is not a cmd command. Can not you just type

activate tensorflow

into anaconda prompt?

Where should I enter 'activate tensorflow'?

Upvotes: 1

Views: 430

Answers (1)

pancho33
pancho33

Reputation: 78

Instead of creat use create

 conda create -n tensorflow

 activate tensorflow

Upvotes: 1

Related Questions