๋ ผ๋ฌธ์ ์์ฑํ๊ธฐ ์ ์ LLM ๋ชจ๋ธ๊ณผ SAST ๋๊ตฌ์ ์ฑ๋ฅ์ ๋น๊ตํ๋ Repository์ ๋๋ค.
๐ง๐ปโ๐ป Language : Python 3.11.x
๐ญ Virtual Environment : venv
๐พ IDE : Visual Studio Code / PyCharm / Jupyter Notebook
๐ฆ Package Manager : pip
๐ Essential Library : requirements.txt# Python Version Check
python --version
python3 --version
# ๋ง์ฝ ํ์ด์ฌ ๋ฒ์ ์ด 3.11.x๊ฐ ์๋ ๊ฒฝ์ฐ, ๊ธฐ์กด ํ์ด์ฌ์ ์ง์ฐ์ง ์๊ณ Python 3.11.x ๋ฒ์ ์ ์ถ๊ฐ๋ก ์ค์นํฉ๋๋ค.
py -3.11 --version
# Git Clone
git clone https://github.com/AutoFiC/llm-vs-sast.git
cd llm-vs-sast
# Directory Create
mkdir "๋ณธ์ธ์ด๋ฆ"
cd "๋ณธ์ธ์ด๋ฆ"
# Virtual Environment Create
python -m venv .venv
python3 -m venv .venv
py -3.11 venv .venv
# Activate Virtual Environment
.venv\Scripts\activate
# Essential Library install
pip install -r requirements.txt# Python Version Check
python --version
python3 --version
# ๋ง์ฝ ํ์ด์ฌ ๋ฒ์ ์ด 3.11.x๊ฐ ์๋ ๊ฒฝ์ฐ, ๊ธฐ์กด ํ์ด์ฌ์ ์ง์ฐ์ง ์๊ณ Python 3.11.x ๋ฒ์ ์ ์ถ๊ฐ๋ก ์ค์นํฉ๋๋ค.
brew install [email protected]
# Git Clone
git clone https://github.com/AutoFiC/llm-vs-sast.git
cd llm-vs-sast
# Directory Create
mkdir "๋ณธ์ธ์ด๋ฆ"
cd "๋ณธ์ธ์ด๋ฆ"
# Virtual Environment Create
python -m venv .venv
python3 -m venv .venv
python3.11 -m venv .venv
# Activate Virtual Environment
source .venv/bin/activate
# Essential Library install
pip install --upgrade pip
pip install -r requirements.txt