New Ubuntu versions like Ubuntu 23.04 disallow the direct invocation of pip3. This PR changes the build script to install virtualenv via apt instead of pip3 to fix that. The subsequent pip3 call is executed within the virtual env and therefore doesn't impose any issue.
New Ubuntu versions like Ubuntu 23.04 disallow the direct invocation of
pip3
. This PR changes the build script to install virtualenv viaapt
instead ofpip3
to fix that. The subsequentpip3
call is executed within the virtual env and therefore doesn't impose any issue.