packages-swipy
Python interface for SWI-Prolog
File Explorer
- SpaCY.md
- spacy.pl
- trains.py
- janus.bbl
- __init__.py
- _find_swipl.py
- hash.c
- janus.c
- janus.pl
- janus.py
- janus_swi.py
- mod_swipl.c
- newversion
- pypi-upload
- README.md
- baseclasses.py
- bench.pl
- demo.py
- dog.py
- russel.pl
- test_janus.py
- threads.py
- while.py
- jintf.py
- kwargs.py
- numpexamp.py
- Person.py
- returnVal.py
- sample.json
- stressTest.py
- sumlist3.py
- test_err.py
- test_stress.pl
- testc.py
- tupInList.py
- tupletest.py
- variadic.py
- .gitignore
- CMakeLists.txt
- config.h.cmake
- janus.plx
- LICENSE
- pyproject.toml
- README.md
- setup.py
- test_janus.pl
- test_xsb_janus.pl
- VERSION
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
pip
View Details ▼
pip
Python package manager.
Some subcommands such as `install` have their own usage documentation.
pip install {{package}}
Install a package (see `pip install` for more install examples):
pip install --user {{package}}
Install a package to the user's directory instead of the system-wide default location:
pip install {{[-U|--upgrade]}} {{package}}
Upgrade a package:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
swipl
View Details ▼
swipl
SWI-Prolog - A comprehensive free Prolog environment.
swipl
Start an interactive session:
swipl --quiet -t "{{command}}"
Execute a command without showing any output:
swipl {{path/to/file.pl}}
Execute a script:
apt install
View Details ▼
apt install
Install packages for Debian-based distributions.
sudo apt install {{package}}
Install a package, or update it to the latest version:
sudo apt install {{[-V|--verbose-versions]}} {{package}}
Display verbose package version information during installation or update:
dnf install
View Details ▼
dnf install
Install packages on Red Hat-based distributions.
sudo dnf {{[in|install]}} {{package1 package2 ...}}
Install packages by name:
sudo dnf {{[in|install]}} {{path/to/file}}
Install a package from a local file:
sudo dnf {{[in|install]}} {{https://example.com/package.rpm}}
Install a package from the internet:
