python 2.7 - Import error web "no module named web" -


i did web application using web.py , after while realize python compiler configure use python2 instead of python3 (both installed). python2 application working got string in unicode try execute code using python3:

python3 mycode.py 

but different kind of error, lib urlparse not found (this problem cause new name in python3 urllib) got problem with:

import web 

the return error is:

importerror: no module named 'web' 

i can't figure out problem come from.

maybe have installed web in python2 lib have none in python3 lib... check out


Comments

Popular posts from this blog

javascript - How to process users in one specific order using map o each function? -

java - Two interface have same method name with different return type -

javascript - Linking from page A to a specific iframe on page B -