Hi guys! Ito ang ating system. For now ilalagay ko muna dito kung paano sya gamitin with your VS Code and kung paano irun ang code. If may gusto kayong baguhin, gumawa kayo ng sarili nyong branch tapos saka nyo ipush.
-
Punta kayo sa Code<> section tapos just press download.
-
Extract and open the folder in your code editor, in my case ay VS Code.
-
To create your own virtual environment for python, run the following code. (Make sure muna na you have python installed sa system mo.)
py -3 -m venv .venvThen activate your virtual environment with the following code.
.venv/Scripts/activateThen install all the required libraries with the following code.
pip install -r requirements.txt -
You need to select the proper python interpreter para dito sa project. To do that:
Open command pallete (ctrl+shift+p) and search for Python: Select Interpreter
Once clicked, hanapin nyo yung virtual environment mo, click it.
-
Once finished, to run yung code you simply need to run this code sa terminal.
py your_file_name.pyThere are two codes to take into account, ito yung pinachecheck ko din sa inyo.
- main-value-testing.py
- main-range-finder.py
So you can run each code with the following:
py main-calue-testing.pyor
py main-range-finder.py



