You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<small> First Edition: Nov 22 - Dec 22, 2019</small>
12
+
<small> Second Edition: July, 2021</small>
13
13
</sub>
14
-
15
-
</div>
16
14
</div>
17
15
18
16
[<< Day 22](../22_Day_Web_scraping/22_web_scraping.md) | [Day 24 >>](../24_Day_Statistics/24_statistics.md)
@@ -30,9 +28,11 @@
30
28
To start with project, it would be better to have a virtual environment. Virtual environment can help us to create an isolated or separate environment. This will help us to avoid conflicts in dependencies across projects. If you write pip freeze on your terminal you will see all the installed packages on your computer. If we use virtualenv, we will access only packages which are specific for that project. Open your terminal and install virtualenv
I prefer to call the new project venv, but feel free to name it differently. Let's check if the the venv was created by using ls (or dir for windows command prompt) command.
49
+
I prefer to call the new project venv, but feel free to name it differently. Let us check if the the venv was created by using ls (or dir for windows command prompt) command.
50
50
51
51
```sh
52
52
asabeneh@Asabeneh:~/Desktop/30DaysOfPython/flask_project$ ls
53
53
venv/
54
54
```
55
55
56
-
Let's activate the virtual environment by writing the following command at our project folder.
56
+
Let us activate the virtual environment by writing the following command at our project folder.
0 commit comments