Installer for the LioranDB Windows portable server ZIP.
Project description
liorandb-server-windows
This package installs the LioranDB Windows portable ZIP and (optionally) adds the install folder to your PATH.
Install
py -m pip install liorandb-server-windows
One-command setup (recommended)
Installs into C:\LioranDB-Server, adds it to User PATH, and tells you what to run next:
liorandb-server-windows
If that command is not found (your Python Scripts folder isn’t on PATH), run:
py -m liorandb_server_windows
Open a new terminal, then run:
ldb-serve
Add to PATH manually (PowerShell)
Avoids adding duplicates:
$dir = 'C:\LioranDB-Server'
$p = [Environment]::GetEnvironmentVariable('Path', 'User')
if (-not ($p -split ';' | Where-Object { $_.TrimEnd('\') -ieq $dir.TrimEnd('\') })) {
[Environment]::SetEnvironmentVariable('Path', ($p + ';' + $dir), 'User')
}
Or via this package:
liorandb-server-windows add-to-path --target C:\LioranDB-Server
Open a new terminal afterwards.
Fix “command not found” for liorandb-server-windows
Add Python’s Scripts directory to User PATH:
$scripts = py -c "import sysconfig; print(sysconfig.get_path('scripts'))"
$p = [Environment]::GetEnvironmentVariable('Path','User')
if (-not ($p -split ';' | Where-Object { $_.TrimEnd('\') -ieq $scripts.TrimEnd('\') })) {
[Environment]::SetEnvironmentVariable('Path', ($p + ';' + $scripts), 'User')
}
CLI help
liorandb-server-windows --help
liorandb-server-windows install --help
To auto-add to PATH instead of printing a command:
liorandb-server-windows install --path-scope user
To only print a command (no PATH changes):
liorandb-server-windows install --path-scope none
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file liorandb_server_windows-0.1.1.tar.gz.
File metadata
- Download URL: liorandb_server_windows-0.1.1.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97ab650e804704471f61bde50afecbe66b054b156be5ed69e2e648d119d71ae5
|
|
| MD5 |
4ed7817d25bb9f272f23f82b53ae9c7d
|
|
| BLAKE2b-256 |
1b331cf00cb6f72f11ff2e92aec49760d750dfa3d96b77cbfc130cf881ccc39d
|
File details
Details for the file liorandb_server_windows-0.1.1-py3-none-any.whl.
File metadata
- Download URL: liorandb_server_windows-0.1.1-py3-none-any.whl
- Upload date:
- Size: 6.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7ce889ff43a0f04091664be8c5d8b186468e13b416ba470c0dadd67f0bdeb1e
|
|
| MD5 |
c7e452922976c3a643dee1594ffc24fa
|
|
| BLAKE2b-256 |
e0cec83c6603b6ba802bdeb694cfa80bce5e16149a0a7bc2f94fe30c30fddda0
|