Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/umrninside/mlogevo-stdlib

"Standard libraries" for MlogEvo.
https://github.com/umrninside/mlogevo-stdlib

Last synced: about 2 months ago
JSON representation

"Standard libraries" for MlogEvo.

Awesome Lists containing this project

README

        

# MlogEvo-stdlib
"Standard libraries" for MlogEvo.

It's hard to distribute MlogEvo Standard Library with MlogEvo, for the `egg` format does NOT include those C header files, and `wheel` format drops its hierarchy.

## Install
1. Download the standard library. Of course, you can click Code -> Download ZIP (on GitHub) instead.
```bash
# Use git
git clone https://github.com/UMRnInside/MlogEvo-stdlib --depth 1
```
2. Install this into Python include directory.
```bash
cd MlogEvo-stdlib
python3 install_stdlib.py
```
Of course, you can literally copy-paste the whole `mlogevo` directory instead.

## Uninstall
```bash
cd MlogEvo-stdlib
python3 uninstall_stdlib.py
```

# Usage without installation
```bash
python3 -m mlogevo -I/path/to/MlogEvo-stdlib/include your-source-code.c
```