This file provides detailed instructions for installing required tools to run SOKEGraph.
- 1. Install Git
- 2. Install Visual Studio Code (VS Code)
- 3. Install Conda (Recommended for Virtual Environment)
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
VS Code is the recommended editor for working with this project.
- Download VS Code: https://code.visualstudio.com/Download
- Follow the installation wizard for your operating system.
During installation, check the box "Add to PATH" so you can open projects with code . from the terminal.
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.
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.