Arun_Ramji_Shanmugam
Arun_Ramji_Shanmugam

Reputation: 63

Installation error for tensorflow in EC2 instance of AWS

I planned to deploy my AI app in aws EC2 instance as it has free trial , everything was going fine but when I was trying install tensor flow in that environment , I am getting below exception error .

Can any one help me on this ?

enter image description here

Upvotes: 0

Views: 439

Answers (2)

Marcin
Marcin

Reputation: 238827

has free trial

The t2.micro which I assume you are using has only 1 GB of ram. This is not enough to install tensorflow and you are probably getting a MemoryError.

I would suggest upgrading to t2.small with 2 GB of ram. However, t2.small is not covered by free-tier.

Upvotes: 2

Mahfuz Ronnie
Mahfuz Ronnie

Reputation: 1

first you should set the environment variable then run the command

Upvotes: 0

Related Questions