diff --git a/build.sh b/build.sh
index 238a03179d342a19265cd3fbb9ec2c8acf04f230..f29ae72d0f2ef610fecb052302301c3f2c3b852b 100755
--- a/build.sh
+++ b/build.sh
@@ -31,11 +31,15 @@ function build_setup() {
   pip check
 }
 
+function pip_install_via_setup_py() {
+   pip install -e .
+}
+
 function build_wheel() {
   python -m pip install --upgrade pip
   pip install setuptools wheel twine
   # python setup.py sdist bdist_wheel
-  # python -m build --wheel
+  python -m build --wheel
   pip check
 }
 
@@ -67,6 +71,6 @@ function main() {
   npm_install
 }
 
-prepare_edit_setup_py
+# prepare_edit_setup_py
 # first_install
-# main
+main