please set up my localhost:8000
--
https://mail.python.org/mailman/listinfo/python-list
On Sun, 07 Jul 2019 16:57:12 +, nabru wrote:
> jaymoyer44 [jaymoye...@gmail.com] wrote:
>
>> On Thursday, April 14, 2016 at 1:47:03 PM UTC-4, wrh...@gmail.com
>> wrote:
>>> Hi,
>>>
>>> I am working on window 7 and Python 3.5 to setup a localhost:8000 but
>>> it did not get through as shown b
jaymoyer44 [jaymoye...@gmail.com] wrote:
> On Thursday, April 14, 2016 at 1:47:03 PM UTC-4, wrh...@gmail.com wrote:
>> Hi,
>>
>> I am working on window 7 and Python 3.5 to setup a localhost:8000 but
>> it did not get through as shown below:
>> > python -m http.server
>> Serving HTTP on 0.0.0.0 po
On Thursday, April 14, 2016 at 1:47:03 PM UTC-4, wrh...@gmail.com wrote:
> Hi,
>
> I am working on window 7 and Python 3.5 to setup a localhost:8000 but it did
> not get through as shown below:
> > python -m http.server
> Serving HTTP on 0.0.0.0 port 8000 ...
>
> But it did not show the results.
On Thursday, April 14, 2016 at 1:47:03 PM UTC-4, wrh...@gmail.com wrote:
> Hi,
>
> I am working on window 7 and Python 3.5 to setup a localhost:8000 but it did
> not get through as shown below:
> > python -m http.server
> Serving HTTP on 0.0.0.0 port 8000 ...
>
> But it did not show the results.
Here you go
A port can be configurable.
https://www.tutorialspoint.com/python/python_http_server.htm
On Mon, Feb 25, 2019 at 12:48 PM Cameron Simpson wrote:
> On 24Feb2019 19:00, 0x906 wrote:
> >>> I am working on window 7 and Python 3.5 to setup a localhost:8000
> >>> but it did not get thro
On 24Feb2019 19:00, 0x906 wrote:
I am working on window 7 and Python 3.5 to setup a localhost:8000
but it did not get through as shown below:
python -m http.server
Serving HTTP on 0.0.0.0 port 8000 ...
But it did not show the results.
Can someone help me how to setup the localhost?
There is
There is a chance that I missed something with the 0.0.0.0. but I am pretty
sure that the localhost IP is 127.0.0.1.
> On Feb 24, 2019, at 6:13 PM, nathanntkou...@gmail.com wrote:
>
> On Thursday, April 14, 2016 at 1:47:03 PM UTC-4, wrh...@gmail.com wrote:
>> Hi,
>>
>> I am working on window
On Thursday, April 14, 2016 at 1:47:03 PM UTC-4, wrh...@gmail.com wrote:
> Hi,
>
> I am working on window 7 and Python 3.5 to setup a localhost:8000 but it did
> not get through as shown below:
> > python -m http.server
> Serving HTTP on 0.0.0.0 port 8000 ...
>
> But it did not show the results.
On Sunday, April 17, 2016 at 1:11:39 PM UTC-4, Pierre Quentel wrote:
> > > 127.0.0.1 - - [15/Apr/2016 20:57:32] "GET / HTTP/1.1" 200 -
> > Hi Pierre,
> >
> > When I type http://localhost:8000, I did not see anything in the console
> > after the line "Serving HTTP on 0.0.0.0 port 8000 ... I belie
> > 127.0.0.1 - - [15/Apr/2016 20:57:32] "GET / HTTP/1.1" 200 -
> Hi Pierre,
>
> When I type http://localhost:8000, I did not see anything in the console
> after the line "Serving HTTP on 0.0.0.0 port 8000 ... I believe the way I ran
> was not correct as shown below:
> > python -m http.server
On 2016-04-16 15:35, wrh8...@gmail.com wrote:
When you type http://localhost:8000, do you see something in the
console after the line "Serving HTTP on 0.0.0.0 port 8000 ..." ?
If the server actually serves requests on port 8000 you should see
a log message such as
127.0.0.1 - - [15/Apr/2016 2
On Friday, April 15, 2016 at 3:04:09 PM UTC-4, Pierre Quentel wrote:
> Le jeudi 14 avril 2016 22:50:33 UTC+2, wrh...@gmail.com a écrit :
> > On Thursday, April 14, 2016 at 2:23:36 PM UTC-4, Andrew Farrell wrote:
> > > What happens when you type
> > >
> > > http://localhost:8000
> > >
> > > Into t
Le jeudi 14 avril 2016 22:50:33 UTC+2, wrh...@gmail.com a écrit :
> On Thursday, April 14, 2016 at 2:23:36 PM UTC-4, Andrew Farrell wrote:
> > What happens when you type
> >
> > http://localhost:8000
> >
> > Into the address bar of your browser as this is running?
> >
> > On Thu, Apr 14, 2016 at
On Fri, Apr 15, 2016 at 3:59 PM, Vito De Tullio wrote:
> Chris Angelico wrote:
>
>>> Just a note, some browsers will try to resolve this as www.localhost.com
>>> - try http://127.0.0.1:8000 .
>>
>> Huh? Why should the name 'localhost' get a dot com added?
>
> ask browser vendors...
I'd more ask y
Chris Angelico wrote:
>> Just a note, some browsers will try to resolve this as www.localhost.com
>> - try http://127.0.0.1:8000 .
>
> Huh? Why should the name 'localhost' get a dot com added?
ask browser vendors...
--
By ZeD
--
https://mail.python.org/mailman/listinfo/python-list
"well, just do this, and poof, all will be
good".
Sorry it's not more.
Dan
> -Original Message-
> From: Python-list [mailto:python-list-bounces+d.strohl=f5@python.org]
> On Behalf Of wrh8...@gmail.com
> Sent: Thursday, April 14, 2016 1:50 PM
> To:
On Thursday, April 14, 2016 at 2:23:36 PM UTC-4, Andrew Farrell wrote:
> What happens when you type
>
> http://localhost:8000
>
> Into the address bar of your browser as this is running?
>
> On Thu, Apr 14, 2016 at 12:46 PM, wrote:
>
> > Hi,
> >
> > I am working on window 7 and Python 3.5 to s
On Fri, Apr 15, 2016 at 4:36 AM, Random832 wrote:
> Just a note, some browsers will try to resolve this as www.localhost.com
> - try http://127.0.0.1:8000 .
Huh? Why should the name 'localhost' get a dot com added?
ChrisA
--
https://mail.python.org/mailman/listinfo/python-list
Just a note, some browsers will try to resolve this as www.localhost.com
- try http://127.0.0.1:8000 .
On Thu, Apr 14, 2016, at 14:06, Andrew Farrell wrote:
> What happens when you type
>
> http://localhost:8000
>
> Into the address bar of your browser as this is running?
--
https://mail.python
What happens when you type
http://localhost:8000
Into the address bar of your browser as this is running?
On Thu, Apr 14, 2016 at 12:46 PM, wrote:
> Hi,
>
> I am working on window 7 and Python 3.5 to setup a localhost:8000 but it
> did not get through as shown below:
> > python -m http.server
wrh8...@gmail.com wrote:
> I am working on window 7 and Python 3.5 to setup a localhost:8000 but it
> did not get through as shown below:
>> python -m http.server
> Serving HTTP on 0.0.0.0 port 8000 ...
That looks correct so far. Now open a browser and open
http://localhost:8000/
--
https://m
22 matches
Mail list logo