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