Reputation: 63
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 ?
Upvotes: 0
Views: 439
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
Reputation: 1
first you should set the environment variable then run the command
Upvotes: 0