Last modified by Leon Poon on 2021/03/23 13:17

From version 2.1
edited by Leon Poon
on 2018/12/24 12:29
Change comment: There is no comment for this version
To version 5.2
edited by Leon Poon
on 2021/03/23 13:17
Change comment: Update document after refactoring.

Summary

Details

Page properties
Parent
... ... @@ -1,1 +1,1 @@
1 -Main.WebHome
1 +Computing Newbies.Python Newbies.WebHome
Content
... ... @@ -1,6 +1,6 @@
1 -First, [[set up a virtualenv>>doc:Main.How to Create a VirtualEnv.WebHome]].
1 +First, [[set up a virtualenv>>doc:Computing Newbies.Python Newbies.How to Create a VirtualEnv.WebHome]].
2 2  
3 -[[In the virtualenv, install flask>>doc:Main.How to add libraries to a virtualenv.WebHome]], then try out this .py file.
3 +[[In the virtualenv, install flask>>doc:Computing Newbies.Python Newbies.How to add libraries to a virtualenv.WebHome]], then try out this .py file.
4 4  
5 5  {{code language="python"}}
6 6  from flask import Flask
... ... @@ -14,6 +14,6 @@
14 14  app.run()
15 15  {{/code}}
16 16  
17 -Run this script [[in the virtualenv>>doc:Main.How to Run a Python Script in a VirtualEnv.WebHome]]. It will not exit.
17 +Run this script [[in the virtualenv>>doc:Computing Newbies.Python Newbies.How to Run a Python Script in a VirtualEnv.WebHome]]. It will not exit.
18 18  
19 19  Now you should be able to access [[http:~~/~~/localhost:5000/>>url:http://localhost:5000/]] in your web browser.