Skip to content
Snippets Groups Projects
Commit f1696e0d authored by Lars Bilke's avatar Lars Bilke
Browse files

Added parameter --pip [package_name]

parent 2f0f21f7
No related branches found
No related tags found
No related merge requests found
......@@ -321,6 +321,9 @@ def main(): # pragma: no cover
'neovim', 'gdb', 'silversearcher-ag', 'ssh-client', 'less'
])
if args.pip:
Stage0 += pip(packages=args.pip, pip='pip3')
if ogs_version != 'off':
mount_args = ''
if args.ccache:
......
......@@ -174,6 +174,12 @@ class Cli_Args(argparse.ArgumentParser):
dest='insitu',
action='store_true',
help='Builds with insitu capabilities')
switches_g.add_argument('--pip',
nargs='*',
type=str,
default=[''],
metavar='package',
help='Install additional Python packages')
maint_g = self.add_argument_group('Maintenance')
maint_g.add_argument(
'--clean',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment