From a893cb43c340b7b5ba12304b483319bf32eef2cb Mon Sep 17 00:00:00 2001 From: Vishwas Navada K Date: Tue, 11 Jun 2019 00:57:41 +0530 Subject: [PATCH] fix the command python -m simpleHTTPServer (#36132) * fix the command python -m simpleHTTPServer Change the simpleHTTPserver to simpleHTTPServer, which is the right commmand. * another capital S had been omitted --- .../python/share-file-using-python-simple-http-server/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/python/share-file-using-python-simple-http-server/index.md b/guide/english/python/share-file-using-python-simple-http-server/index.md index 869acc80d0..197b1e920a 100644 --- a/guide/english/python/share-file-using-python-simple-http-server/index.md +++ b/guide/english/python/share-file-using-python-simple-http-server/index.md @@ -7,7 +7,7 @@ title: Share File Using Python SimpleHTTPserver 2. Open terminal in Ubuntu and make sure you have python installed in your PC. 3. If not installed then install it by typing in terminal "sudo apt-get install python" without quotes. 4. Goto the directory whose file you want to share by using cd(change directory) command. -5. Type this command "python -m simpleHTTPserver" without quotes. +5. Type this command "python -m SimpleHTTPServer" without quotes. 6. Open new terminal and type ifconfig and find your IP address. ## Now in the second computer