Changes between Version 3 and Version 4 of pyrunner


Ignore:
Timestamp:
03/20/23 14:46:30 (2 years ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • pyrunner

    v3 v4  
    22
    33This is a tool to run python code from Java.
     4The tool requires FULL python to be installed, including pip and venv.
     5
     6Some python installations require manual post-installation of these. To do this you need something like
     7{{{
     8sudo apt-get update
     9sudo apt install python3-pip
     10sudo apt install python3.<VERSION>-venv
     11}}}
     12
     13where <VERSION> is 8,9 etc depending on your python version.
    414
    515The procedure is roughly:
     
    919* E.call the code you want to run
    1020* call E.remove to remove the venv
     21
     22