File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -42,12 +42,14 @@ Crear entorno virtual Python en directorio ``$HOME`` con el
42
42
siguiente comando:
43
43
44
44
::
45
-
45
+
46
46
$ virtualenv --python=/usr/bin/python3 venv
47
47
48
48
49
49
Activarlo entorno virtual Python creado con el siguiente comando:
50
-
50
+
51
+ ::
52
+
51
53
$ source ~/venv/bin/activate
52
54
53
55
@@ -75,7 +77,7 @@ Cree modulo Python llamado :file:`bookmanager.py` dentro del
75
77
directorio :file: `~/projects/flask-crud-app `, con el siguiente comando:
76
78
77
79
::
78
-
80
+
79
81
$ nano ~/projects/flask-crud-app/bookmanager.py
80
82
81
83
Agregue el siguiente contenido al archivo :file: `~/projects/flask-crud-app/bookmanager.py `.
@@ -89,8 +91,8 @@ Cree plantilla HTML llamado :file:`home.html` dentro del directorio
89
91
:file: `~/projects/flask-crud-app/templates `, con el siguiente comando:
90
92
91
93
::
92
-
93
- $ nano ~/projects/flask-crud-app/bookmanager.py
94
+
95
+ $ nano ~/projects/flask-crud-app/templates/home.html
94
96
95
97
Agregue el siguiente contenido al archivo :file: `~/projects/flask-crud-app/templates/home.html `.
96
98
You can’t perform that action at this time.
0 commit comments