Changes between Version 3 and Version 4 of pyrunner
- Timestamp:
- 03/20/23 14:46:30 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
pyrunner
v3 v4 2 2 3 3 This is a tool to run python code from Java. 4 The tool requires FULL python to be installed, including pip and venv. 5 6 Some python installations require manual post-installation of these. To do this you need something like 7 {{{ 8 sudo apt-get update 9 sudo apt install python3-pip 10 sudo apt install python3.<VERSION>-venv 11 }}} 12 13 where <VERSION> is 8,9 etc depending on your python version. 4 14 5 15 The procedure is roughly: … … 9 19 * E.call the code you want to run 10 20 * call E.remove to remove the venv 21 22