我试图将我的项目转换为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
我该怎么做?
答案 0 :(得分:1)
你的shebang建议代码应该由python
二进制文件运行,这在历史上与Python 2.x版本有关。
只需将第一行更改为:
#!/usr/bin/env python3