Python – No Module named SimpleHTTPServer

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/hongchangfirst/article/details/80648353

如果用python打开一个http服务器:

python -m SimpleHTTPServer 9999

出现Python – No Module named SimpleHTTPServer

看一下python版本,python --version,如果是python3的话,可以试试

python -m http.server 9999

python的http server的module名字变了,需要改一下。

原文:http://blog.csdn.net/hongchangfirst/article/details/80648353

作者:hongchangfirst

hongchangfirst的主页:http://blog.csdn.net/hongchangfirst

扫描二维码关注公众号,回复: 4058068 查看本文章

猜你喜欢

转载自blog.csdn.net/hongchangfirst/article/details/80648353