You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Added explicit Google Colab execution instructions for remote Math explorations
- Hardened High-Dimensional Mathematics and Interactive Simulation SEO parameters
- Re-structured OS installation sequences for error-free deployment
The core NRC mathematical engine is built for infinite-precision testing and interactive data visualization. Below are explicitly expanded, foolproof protocols across three dominant operating spheres (Linux, Windows, macOS).
53
+
54
+
**General Requirements:**
55
+
-`python3` (Version 3.10+ recommended)
56
+
-`git`
57
+
- Access to terminal/command line
58
+
59
+
### ☁️ Remote Access (Google Colab)
60
+
61
+
For users lacking the physical compute capabilities required to run these interactive mathematical visualizations natively, Google Colab provides an immediate external environment executing in the cloud.
62
+
63
+
1. Navigate to **Google Colab** (https://colab.research.google.com).
64
+
2. At the top menu, select **File > Open Notebook**.
65
+
3. Select the **GitHub** tab.
66
+
4. Input the Repository URL: `https://github.com/Nexus-Resonance-Codex/NRC`
67
+
5. Click on the file **`interactive_nrc_explorer.ipynb`**.
68
+
6. When the notebook opens, you **must prepend** a unique install command to the first cell to load required math operators in Colab. Insert a new block at the beginning containing:
69
+
```python
70
+
!pip install mpmath sympy matplotlib
71
+
```
72
+
7. Press `Shift + Enter` to sequentially run and evaluate each interactive mathematical module.
This environment grants you graphical mathematical outputs of the NRC framework:
112
+
```bash
113
+
uv pip install jupyterlab
114
+
# Execute locally
115
+
jupyter lab interactive_nrc_explorer.ipynb
116
+
```
117
+
*(A browser window will automatically launch displaying the geometric constants and scripts.)*
118
+
119
+
### 🪟 Windows 11 (via WSL2 / Ubuntu)
120
+
121
+
Avoid utilizing standalone PowerShell or Command Prompt, as path separation structures (backslash \) and C-libraries diverge from standard POSIX compliances, introducing mathematical anomalies. Instead, Windows users must project their processes into the Windows Subsystem for Linux (WSL).
122
+
123
+
1.**Enable Virtual Windows Subsystem (WSL2):**
124
+
Execute from an elevated **Administrator** PowerShell window:
125
+
```powershell
126
+
wsl --install
127
+
```
128
+
Reboot your PC to finalize. When Windows returns, an Ubuntu terminal will pop up. Establish a UNIX user/pass (the password won't show visually while typing).
Copy file name to clipboardExpand all lines: gradio/README.md
+98Lines changed: 98 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,3 +31,101 @@ This Space provides a live, interactive explorer for the mathematical and AI fra
31
31
## Source Code
32
32
33
33
All source code is available in the [NRC GitHub Organization](https://github.com/Nexus-Resonance-Codex).
34
+
35
+
## 🚀 Running the Interactive Space Locally & Remote Analysis
36
+
37
+
This suite enables users to natively explore the NRC mathematical constructs through any Web Browser. Follow the explicit procedures corresponding to your OS environment, or use external instances like Google Colab.
0 commit comments