浏览代码

provision.pl - fixed typo in pip installation

tags/release-00
gashapwn 3 年前
父节点
当前提交
b0bb56d8e4
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      perl-script/provision.pl

+ 2
- 1
perl-script/provision.pl 查看文件

@@ -49,7 +49,8 @@ chdir $REPO_DIR;

# Setup the virtual environment
system("pkg_add python3");
printf("generating virutal enviornment...\n");
system("su $admin_un -c 'python3 -m venv venv'");
system("su $admin_un -c '. ./venv/bin/activate && pip3 install -r ");
system("su $admin_un -c '. ./venv/bin/activate && pip3 install -r requirements.txt");

system("pkg_add p5-JSON");

正在加载...
取消
保存