Installation¶
Prerequisites¶
Before installing Neurogebra, make sure you have:
- Python 3.9 or higher installed on your computer
- pip (Python's package manager — comes with Python)
Don't have Python?
Download Python from python.org. During installation on Windows, check "Add Python to PATH".
Step 1: Install Neurogebra¶
Open your terminal (Command Prompt on Windows, Terminal on Mac/Linux) and type:
That's it! Neurogebra is now installed.
Step 2: Verify Installation¶
Let's make sure it worked. Open a Python shell:
Then type:
You should see the version number printed (e.g., 2.5.8).
Optional Extras¶
Neurogebra has optional features you can install:
Visualization Tools¶
Adds plotting and visualization (requires matplotlib and plotly).Performance Boost¶
Adds Numba JIT compilation for faster numerical evaluation.Framework Bridges¶
Adds PyTorch, TensorFlow, and JAX integration.Everything¶
Installs all optional dependencies at once.Troubleshooting¶
Common Issues
pip not found?
Try pip3 install neurogebra or python -m pip install neurogebra.
Permission denied?
Try pip install --user neurogebra or use a virtual environment.
Old Python version?
Neurogebra requires Python 3.9+. Check with python --version.
Using a Virtual Environment (Recommended)¶
A virtual environment keeps your project dependencies isolated:
Next: Your First Program →