Actually I am learning python flask Navigation, I installed all the necessary packages successfully, these are some of the packages,
app$ venv/bin/easy_install  flask-restful
app$ venv/bin/easy_install  Flask-bootstrap
app$ venv/bin/easy_install  Flask-Navigation
but when I am tring to import
   from flask_nav import Nav
         or
   from flask_nav.elements import Navbar, View
getting error,
>>>from flask_nav import register_renderer
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named 'flask_nav'
I am using ubuntu-14.02 and Python 3.4.3. How do i fix this error, any solution.