Installation Guide - Pranav-Lejith/Orion GitHub Wiki
Installation-Guide.md
# Installation Guide
## System Requirements
- **Python**: 3.8 or higher
- **OS**: Windows, Linux, macOS
- **RAM**: 512MB minimum
- **Storage**: 50MB free space
## Quick Installation
### Windows
```cmd
git clone https://github.com/Pranav-Lejith/Orion.git
cd Orion
install.bat
orion shell
Linux/macOS
git clone https://github.com/Pranav-Lejith/Orion.git
cd Orion
chmod +x install.sh
./install.sh
orion shell
Manual Installation
-
Install Dependencies
pip install termcolor pip install tensorflow # Optional pip install numpy # Optional
-
Add to PATH
Windows: Add Orion directory to PATH environment variable
Linux/macOS:
echo 'alias orion="python /path/to/orion/interpreter.py"' >> ~/.bashrc source ~/.bashrc
Verification
orion shell
You should see the Orion welcome screen with ASCII art.
Troubleshooting
"orion command not found"
- Ensure Orion is in your PATH
- Use full path:
python interpreter.py shell
"Python not found"
- Install Python from python.org
- Use
python3
instead ofpython
Permission denied
- Run as administrator (Windows)
- Use
chmod +x
(Linux/macOS)