无法导入urllib.request,urllib.parse,urllib.error"

时间:2016-09-18 15:31:56

标签: python python-2.7 python-3.x urllib

我试图将我的项目转换为python3。

我的服务器脚本是server.py:

#!/usr/bin/env python
#-*-coding:utf8-*-

import http.server
import os, sys
server = http.server.HTTPServer
handler = http.server.CGIHTTPRequestHandler
server_address = ("", 8080)
#handler.cgi_directories = [""]
httpd = server(server_address, handler)
httpd.serve_forever()

但是当我尝试时:

import urllib.request, urllib.parse, urllib.error

我在python3 ./server.py:

的终端得到这个
    import urllib.request, urllib.parse, urllib.error
ImportError: No module named request
127.0.0.1 - - [18/Sep/2016 22:47:18] CGI script exit status 0x100

我该怎么做?

1 个答案:

答案 0 :(得分:1)

你的shebang建议代码应该由python二进制文件运行,这在历史上与Python 2.x版本有关。

只需将第一行更改为:

#!/usr/bin/env python3