“Python Run Server” Ответ

Python Run Server

python3 -m http.server 8000 # LINUX

python -m http.server 8000 # WINDOWS
Agostinho Ramos

Python Localhost

# If Python version returned above is 3.X
python3 -m http.server
# On windows try "python" instead of "python3", or "py -3"
# If Python version returned above is 2.X
python -m SimpleHTTPServer
Hilarious Hyena

Команда локального сервера Python

On Ubuntu go to Commands and hit these two commands->
cd folderName
python3 -m http.server 8080
Crazy Crane

Python Command Line Server Server

python -m http.server --directory /tmp/ <PORT[OPTIONAL]>
notorious

Ответы похожие на “Python Run Server”

Вопросы похожие на “Python Run Server”

Больше похожих ответов на “Python Run Server” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования