https://github.com/davidbrochart/ipytextual
Jupyter Textual-based Widget
https://github.com/davidbrochart/ipytextual
Last synced: 11 months ago
JSON representation
Jupyter Textual-based Widget
- Host: GitHub
- URL: https://github.com/davidbrochart/ipytextual
- Owner: davidbrochart
- License: bsd-3-clause
- Created: 2023-11-23T13:42:27.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-05T21:31:57.000Z (over 1 year ago)
- Last Synced: 2025-03-13T07:09:45.558Z (11 months ago)
- Language: Python
- Size: 289 KB
- Stars: 13
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# ipytextual
Jupyter Textual-based Widget
## Installation
You can install `ipytextual` using `pip`:
```bash
pip install ipytextual
```
## Development Installation
Create a development environment:
```bash
micromamba create -n ipytextual
micromamba activate ipytextual
micromamba install -c conda-forge python nodejs
pip install jupyterlab
npm install
```
Install the Python package and build the TypeScript package.
```bash
pip install -e .
node_modules/.bin/esbuild --bundle --format=esm --outdir=ipytextual/static src/index.ts
```