From c3f496475c5d2b29b30b1e24dad4a939065fe509 Mon Sep 17 00:00:00 2001 From: nanoric Date: Mon, 18 Mar 2019 22:45:48 -0400 Subject: [PATCH] [Fix] fixed install script --- install.bat | 2 +- install.sh | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/install.bat b/install.bat index a13bfd8c..ba97d687 100644 --- a/install.bat +++ b/install.bat @@ -2,4 +2,4 @@ pip install -r requirements.txt :: Install vn.py -python setup.py install \ No newline at end of file +pip install . \ No newline at end of file diff --git a/install.sh b/install.sh index a13bfd8c..4f36d7f3 100644 --- a/install.sh +++ b/install.sh @@ -1,5 +1,6 @@ -::Install Python Modules +#!/usr/bin/env bash +# Install Python Modules pip install -r requirements.txt -:: Install vn.py -python setup.py install \ No newline at end of file +# Install vn.py +pip install . \ No newline at end of file