-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme.html
33 lines (33 loc) · 1.36 KB
/
readme.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Read Me</title>
<style>
body {background-color: powderblue;}
h1 {color: blue;}
p {
color: red;
font-family: courier;
font-size: 160%;
}
li {color: black;font-size: 140%;}
ul {color: brown; font-size: 120%;}
</style>
</head>
<body>
<p>
<h1>Follow these instructions before you create any new project.</h1>
<ul>
<li> upgrade pip using <b>'py -m pip install --upgrade pip'</b></li>
<b>Note :</b> use <b>'py -m pip --version'</b> for checking current pip version.
<li> Install virtualenv using <b>'py -m pip install --user virtualenv'</b> </li>
<li> create a virtual env for this project using <b>'py -m virtualenv venv'</b> command </li>
<li> activate the virtual env 'venv' by using actiavting scripts under it's scripts folder.</li>
<li> type command <b>'deactivate'</b> anytime to come out of current virtual environmnt.</li>
<li> you can install requiremtns from requirements.txt file by using <b>'pip install -r requirements.txt'</b></li>
<li> you can anytime write to the same file with new requirements by using <b>'pip freeze > requirements.txt'</b> command.</li>
</ul>
</p>
</body>
</html>