diff --git a/build.sh b/build.sh
index edc9aad86827c5200275c34647d0420c0536b21e..4a0ec339864eba87c54b048d669338419be8d687 100755
--- a/build.sh
+++ b/build.sh
@@ -34,8 +34,8 @@ function build_setup() {
 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 setup.py sdist bdist_wheel
+  # python -m build --wheel
   pip check
 }
 
@@ -46,12 +46,10 @@ function npm_install() {
 function first_install() {
   python -m pip install setuptools wheel
   python -m pip install --upgrade pip
-  python setup.py develop
   pip_install
   pip_compile
-  build_wheel
+  # build_wheel
   build_setup
-  pip check
   npm_install
 }