127.0.0.1拒绝连接

时间:2018-08-12 13:27:30

标签: python html d3.js terminal macros

在命令提示符下键入

python -m HTTPServer

我知道了

  

在0.0.0.0端口8000上提供HTTP服务

但是当我尝试访问localhost页面时,它将无法打开。

我也尝试过

http://127.0.0.1:8000/ 

但仍然没有打开。

输出:

output

此外,我的电脑已安装了anaconda,我认为这可能会妨碍8000端口。我不想卸载anaconda。尝试学习D3时如何使用此端口或其他新端口?

enter image description here

1 个答案:

答案 0 :(得分:1)

使用python3,在您的网络资产目录中运行以下命令:

python -m http.server 8000

这应该等同于在python2中使用SimpleHTTPServer。