-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrequirements.txt
47 lines (40 loc) · 1.24 KB
/
requirements.txt
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# local package
-e .
#Python Version 3.9.8
# external requirements
tensorflow==2.9.0
pandas==1.5.2
feast==0.23.0
numpy==1.24.1
protobuf==3.20.3
pandavro==1.5.2
matplotlib==3.5.3
sklearn==0.0.post1
category_encoders==2.5.1.post0
webcolors==1.11.1
lightgbm==3.2.1
seaborn==0.12.0
PyYAML==6.0
dill==0.3.6
cv==1.0.0
pyarrow==8.0.0
fastparquet==0.8.1
streamlit==1.16.0
#Library used in the notebooks if required can be installed seperately
#cudf
#plotly
#Step 1 Create a Virtual enviroment with in the project folder
#py -<<python_version>> -m venv <<your_environment_name>>
#Step 2 Activate the Virtual Environment by calling Activate.bat
#\<<your_environment_name>>\Scripts\Activate.bat
#Step 3: Select this Environment as Interpreatr in VScode
#-> Ctrl+Shift+P
#-> Select from drop down or type : "Python: Select Interpreter"
#-> Select "Enter interpreter path..."
#-> Select "Find.." and browse to folder and select" \Scripts\python.exe" in the new environment folder that we created.
#Step 4: [Optional]: Upgrade pip in your_enviroment
#-> Open the Terminal
#-> Terminal should show <<your_environment_name>> in the command line. If not execute Step 2 again
#-> pip install pip --upgrade
#Step 5: Install the requirement dll
#pip install -r requirements.txt