Skip to content

Latest commit

 

History

History
65 lines (44 loc) · 2.02 KB

File metadata and controls

65 lines (44 loc) · 2.02 KB

🛠 INSTALLATION.md

This file provides detailed instructions for installing required tools to run SOKEGraph.


📑 Table of Contents


1. Install Git

Git is required to clone the repository.

  • Windows: Download Git for Windows and follow the setup wizard.
  • macOS: Git is preinstalled. If not, install via Homebrew:
    brew install git
  • Linux: Use your package manager. For example (Ubuntu/Debian):
    sudo apt update && sudo apt install git

2. Install Visual Studio Code (VS Code)

VS Code is the recommended editor for working with this project.

Add VS Code to PATH (Optional but Recommended)

During installation, check the box "Add to PATH" so you can open projects with code . from the terminal.

Install Extensions

After installing VS Code, open it and install these extensions:

  • Python (Microsoft)
  • Jupyter (Microsoft)

These extensions make it easier to run and edit .py or .ipynb files directly inside VS Code.


3. Install Conda (Recommended for Virtual Environment)

We recommend Miniconda (lightweight Conda).

  • Download Miniconda for your OS.
  • Install and follow on-screen instructions.

Verify installation:

conda --version

✅ With Git, VS Code, and Conda installed, you are ready to follow the steps in the README to set up and run the project.