diff --git a/build.sh b/build.sh
index 21a5f04535d66b13fa464b6d89ca09a89cd742a1..8147c243981ab89c7789a46cb4ebc79942fb48a9 100755
--- a/build.sh
+++ b/build.sh
@@ -1,10 +1,11 @@
 #!/usr/bin/env bash
 
 function setup_venv() {
+    conda deactivate
     deactivate
     rm -rf venv
-    py -3 -m venv venv
-    venv/Scripts/activate
+    python -m venv venv
+    venv/bin/activate
 }
 
 function pip_compile() {
@@ -32,7 +33,7 @@ function build_wheel() {
 }
 
 function main() {
-  #setup_venv
+  setup_venv
   pip_compile
   pip_install
   pip_install_via_setup_py