diff --git a/binder/apt.txt b/binder/apt.txt
new file mode 100644
index 0000000000000000000000000000000000000000..290d2904b34bfd5e83a65f3bf25705676c45795a
--- /dev/null
+++ b/binder/apt.txt
@@ -0,0 +1,2 @@
+cmake
+clang
\ No newline at end of file
diff --git a/binder/environment.yml b/binder/environment.yml
new file mode 100644
index 0000000000000000000000000000000000000000..2bf312914374d334b84afd1d6d0c60b0d423461d
--- /dev/null
+++ b/binder/environment.yml
@@ -0,0 +1,11 @@
+# This .yml file is used to specify the conda environment that should be loaded into the binder instance
+name: pymcx
+dependencies:
+  - python=3.9
+  - matplotlib
+  - scipy
+  - numpy
+  - jupyter
+  - notebook
+  - sympy
+  - pip
\ No newline at end of file
diff --git a/binder/postBuild b/binder/postBuild
new file mode 100644
index 0000000000000000000000000000000000000000..f79b39198279804af9fe39da3a7c834b1fc601cb
--- /dev/null
+++ b/binder/postBuild
@@ -0,0 +1,3 @@
+#!/bin/bash
+set -ex
+CXX=clang++ pip install git+git://github.com/ianhbell/teqp.git
\ No newline at end of file