前言:macOS自带的Apache可以提供通过http://localhost:8081访问本地文件服务,那么python有没有类似功能的库呢?下面来简单操作一下~
/Users/ypf/Share
为例)// python2
python -m SimpleHTTPServer 8081
// python3
python3 -m http.server 8081
// python3.7开始,支持添加--directory参数来指定共享目录(相对路径、绝对路径都可以)
python3 -m http.server 8081 --directory ./share/
http://localhost:8081
,就可以访问到共享的文件啦为什么使用python
会直接调用python2版本,而想要使用python3版本就需要通过python3
呢?
这是因为macOS集成了python2、python3两个版本,其中有很多系统服务是基于python2的,因此python2版本也是默认使用的版本。
命令头 | 调用的python版本 |
---|---|
python | 调用默认版本的python。当前默认版本为python2,就相当于python2;python3类似 |
python2 | 调用python2 |
python3 | 调用python3 |
通过下面操作,可以很清晰看到,macOS的确集成了python2、python3两个版本,并且默认版本是python2~