aws-tensorflow-setup icon indicating copy to clipboard operation
aws-tensorflow-setup copied to clipboard

libcudart.so.7.5: No such file or directory

Open barry opened this issue 9 years ago • 0 comments

Not working for me I'm afraid.

import tensorflow gives the following error:

ImportError: libcudart.so.7.5: cannot open shared object file: No such file or directory

Below is my code.

# Launch instance

aws ec2 run-instances --image-id ami-fce3c696 --count 1 --instance-type g2.2xlarge --key-name my_aws_key --security-groups my-sg
aws_get_ip
ssh -i ~/.aws/my_aws_key.pem ubuntu@$IPADDRESS

# Install and test everything on the EC2 instance

sudo apt-get update
sudo apt-get install git
git clone https://github.com/barry/aws-tensorflow-setup/
./aws-tensorflow-setup/setup-aws-tensorflow.bash

mkdir tf_test_mnist
cd tf_test_mnist
wget https://raw.githubusercontent.com/tensorflow/tensorflow/master/tensorflow/models/image/mnist/convolutional.py
python convolutional.py

barry avatar Sep 30 '16 19:09 barry