We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
简易Web Server 你是否想过通过网络快速共享文件?好消息,Python为你提供了这样的功能。进入到你要共享文件的目录下并在命令行中运行下面的代码:
python2: python -m SimpleHTTPServer 6666 ——这个命令是python2的 python3: python -m http.server ——这个命令是python3才有的,在centOS执行会报错:/usr/bin/python: No module named http.server
The text was updated successfully, but these errors were encountered:
https://eastlakeside.gitbooks.io/interpy-zh/content/Onelines/
Sorry, something went wrong.
No branches or pull requests
简易Web Server
你是否想过通过网络快速共享文件?好消息,Python为你提供了这样的功能。进入到你要共享文件的目录下并在命令行中运行下面的代码:
The text was updated successfully, but these errors were encountered: