-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNotes
More file actions
29 lines (19 loc) · 656 Bytes
/
Copy pathNotes
File metadata and controls
29 lines (19 loc) · 656 Bytes
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
git clone <http_url>
ssh-keygen -t rsa
git clone <ssh_url>
pip freeze | less (packages that are installed in that environment)
pip freeze | wc -l (count of packages that are installed)
# Creating virtual environment to avoid conflicts between
# already installed packages and our packages
# in that specific environment
python3 -m venv ~/.venv
nano ~/.bashrc
Add below line in ~/.bashrc file
source ~/.venv/bin/activate
Install packages using Makefile
step1 - Add below lines in Makefile
install:
pip install --upgrade pip &&\
pip install -r requirements.txt
step2 - Run Makefile using below command in terminal
make install