diff --git a/PCB_file_measurement card/measurement_board/card_measure_raspberry_v4.00.fzz b/PCB_file_measurement card/measurement_board/card_measure_raspberry_v4.00.fzz
deleted file mode 100644
index 2e5921d27311266d393b40c8db449bafa7329b45..0000000000000000000000000000000000000000
Binary files a/PCB_file_measurement card/measurement_board/card_measure_raspberry_v4.00.fzz and /dev/null differ
diff --git a/create_virtual_environment.sh b/create_virtual_environment.sh
new file mode 100755
index 0000000000000000000000000000000000000000..f5bc4cbdca75346e225a992f1b21aae2e8a4b5b5
--- /dev/null
+++ b/create_virtual_environment.sh
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+# ensure that the libatlas-base-dev library is installed
+sudo apt-get install -y libatlas-base-dev
+
+# Create the virtual environment
+python3 -m venv ohmpy
+
+# Activate it
+source ohmpy/bin/activate || exit 1  # NOTE: Added || exit to avoid installing requirements in system python if the virtual environment can't be loaded
+
+# Solve issues associated to storage allocation
+export CFLAGS=-fcommon
+
+# install all required packages in the virtual environment.
+pip install -r requirements.txt
+
diff --git a/env.sh b/env.sh
deleted file mode 100755
index 7f8f33f924942ce32cff08982c81987785e28184..0000000000000000000000000000000000000000
--- a/env.sh
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/bash
-sudo apt-get install -y libatlas-base-dev
-python3 -m venv ohmpy
-source ohmpy/bin/activate || exit 1  # NOTE: Added || exit to avoid installing requirements in system python
-export CFLAGS=-fcommon
-pip install -r requirements.txt
-
diff --git a/requirements.txt b/requirements.txt
index e203227fb61ff6a6168f43af741e8459e407a2b4..15a37eb68287b89f22241774e8b031a34d481e43 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -7,4 +7,4 @@ adafruit-circuitpython-tca9548a
 adafruit-circuitpython-mcp230xx
 gpiozero
 termcolor
-pandas
+pyzmq
\ No newline at end of file