-
Notifications
You must be signed in to change notification settings - Fork 1
Environment Setup
Tony Chan edited this page Dec 12, 2024
·
1 revision
This guide will walk you through setting up the development environment for the BGL Meal Identification project on Windows.
If Chocolatey is not installed, follow these steps:
- Open PowerShell as Administrator (right-click PowerShell and select "Run as Administrator")
- Run the following command:
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))- Close and reopen PowerShell as Administrator to complete the installation
- Open PowerShell as Administrator
- Run:
choco install make- Download Miniconda from: https://docs.conda.io/en/latest/miniconda.html
- Run the installer (.exe file)
- During installation:
- Select "Add Miniconda to my PATH environment variable" (or add it manually)
- Close and reopen PowerShell after installation
- Verify installation by running:
conda --versiongit clone [project-repository-url]
cd bgl-meal-identification/meal_identificationmake create_environmentconda activate meal_identificationconda infomake requirements