...
- Clone the repository:
git clone https://github.com/YourUsername/repository_name.git- Install UV
If you're a MacOS/Linux user type:
curl -LsSf https://astral.sh/uv/install.sh | shIf you're a Windows user open an Anaconda Powershell Prompt and type :
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"- Create an environment
uv venv - Activate the environment
If you're a MacOS/Linux user type (if you're using a bash shell):
source ./venv/bin/activateIf you're a MacOS/Linux user type (if you're using a csh/tcsh shell):
source ./venv/bin/activate.cshIf you're a Windows user type:
.\venv\Scripts\activate- Install dependencies:
uv pip install -r requirements.txt...
...
- ...
- ...
- ...
...
...
...