Attributeerror: module ‘tensorflow’ has no attribute ‘app’ [SOLVED]

The attributeerror: module ‘tensorflow’ has no attribute ‘app’ occurs when you are trying to access an attribute that doesn’t exist or isn’t found in the TensorFlow library.

This module ‘tensorflow’ has no attribute ‘app,’ happens due to version incompatibility between TensorFlow versions 1 and 2. If you’re having a hard time trying to figure out what’s wrong with your code, that’s giving you a headache.

Well, you are lucky enough that you found this article, because in this article you’ll get rid of the error you are currently facing. Sounds great, right?

Continue to read on as we are going to give you the solutions that you need most.

What is “attributeerror: module ‘tensorflow’ has no attribute ‘app'” error?

attributeerror: module 'tensorflow' has no attribute 'app

As what we mentioned above this attributeerror module tensorflow has no attribute app error message occurs because the “tensorflow” library does not have an attribute called “app”.

In Tensorflow version 2 the the attribute “app” has been deprecated or remove that is why, when you are trying to access it, it will throw an module ‘tensorflow’ has no attribute ‘app’ error.

Fortunately, the solution for this is just easy, so that it won’t be hard for you to fix it.

Solution for “attributeerror: module ‘tensorflow’ has no attribute ‘app'” error

The following are the effective solutions you may use to fix the error that you are facing right now.

1. Check the TensorFlow version

To check what version of TensorFlow you are currently using, you can use the following code:

import tensorflow as tf
print(tf.__version__)

or you can use these commands below:

pip show tensorflow

pip3 show tensorflow

If you are using TensorFlow version 2, then you need to replace tf.app.flags with tf.compat.v1.flags.

2. Upgrade your code

If you are using the code below it will throw an attributeerror module tensorflow has no attribute app error.

import tensorflow as tf
FLAGS = tf.app.flags.FLAGS

To make your current Python code compatible with the your existing TensorFlow version 2, you have to upgrade your code.

The tf.app has been removed from TensorFlow version 2, and using tf.compat.v1 is the best way to get rid of this error.

You just have to replace

tf.app.flags

into:

tf.compat.v1.flags

As a result, it will look like this:

import tensorflow as tf
FLAGS = tf.compat.v1.flags.FLAGS

By doing this, it will give you backward compatibility without downgrading the version of TensorFlow. And so, your Python code will run perfectly!

3. Downgrade Tensorflow version

If the above solution do not resolve the issue, you can try to downgrade TensoFlow version. You can easily downgrade the tensorflow version to 1. x using the following command:

pip install tensorflow==1.15.5

However, using the given command above is not a recommended solution because it might break some of your code that results with a lot of errors.

Related Articles for Python Errors

Conclusion

Now you can easily fix the error because this article provides solutions for the “attributeerror: module ‘tensorflow’ has no attribute ‘app, which is a big help in solving the problem you are currently facing.

We are really hoping that this article will totally help you troubleshoot this module ‘tensorflow’ has no attribute ‘app’ error.

Thank you very much for reading to the end of this article. Just in case you have more questions or inquiries, feel free to comment, and you can also visit our website for additional information.

Leave a Comment