Skip to content

Commit 2928172

Browse files
authored
dbar4gun: fix installation (#4030)
On Buster, there's no `virtualenv` command in the `python3-virtualenv` package, so use an alternate syntax to create the virtual environment.
1 parent 1e798e4 commit 2928172

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scriptmodules/supplementary/dbar4gun.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function sources_dbar4gun() {
2525
}
2626

2727
function install_dbar4gun() {
28-
virtualenv -p python3 "$md_inst"
28+
python3 -m venv "$md_inst"
2929
source "$md_inst/bin/activate"
3030
pip3 install .
3131
deactivate

0 commit comments

Comments
 (0)