Getting Started with ELPM¶
This guide will walk you through installing your first package using the EasyLang Package Manager (ELPM).
ELPM is included automatically when you install EasyLang—no extra steps required.
Verify ELPM Installation¶
Run:
elpm --version
If everything is installed correctly:
ELPM - EasyLang Package Manager v2025.x
Installing Your First Package¶
To install a Python package:
elpm --install <package>
Example:
elpm --install requests
You’ll see:
ELPM: Searching for 'requests'...
[progress bar...]
ELPM: Downloading requests...
ELPM: Installing requests...
ELPM: 'requests' installed successfully!
Using the Package in EasyLang¶
After installation, simply bring it:
bring requests as req
we let r = req.get("https://httpbin.org/get")
so print r.text
ELPM automatically ensures Python libraries are available in EasyLang.
Uninstall a Package¶
elpm --uninstall requests
List Installed Packages¶
elpm --list
Example output:
ELPM: Installed packages:
- requests (2.31.0)
- numpy (1.26.0)
- pillow (10.0.0)
Next Step¶
Continue to Using Python Packages with ELPM