diff --git a/.vscode/requirements_conda.txt b/.vscode/requirements_conda.txt
new file mode 100644
index 0000000000000000000000000000000000000000..2a0dd31a412fc32e86a04d38889c2a24217d05db
--- /dev/null
+++ b/.vscode/requirements_conda.txt
@@ -0,0 +1,15 @@
+# On linux, you should run this command (or equivalent) also need these packages:
+# > apt install build-essential python3.11-dev swig
+# (replace 3.11 with your python version; for instance python3.12-dev.
+gymnasium[box2d]
+torch
+sympy
+tqdm
+seaborn
+pillow
+scikit-learn
+matplotlib
+requests # Required when updating the local files (read stuff from gitlab).
+pyqt6 # Try pyqt
+pygame
+
diff --git a/LICENSE b/LICENSE
deleted file mode 100644
index 847cbfa92ac0478b2603a978861509cd75ce321b..0000000000000000000000000000000000000000
--- a/LICENSE
+++ /dev/null
@@ -1,8 +0,0 @@
-LICENCE
-
-This repository contains code for the course 02465, Introduction to reinforcement learning and control theory.
-
-Some of the code in this repository is not written by me and the licensing terms are as indicated in the relevant files.
-
-Files authored by me or other DTU employees is only intended for educational purposes for students enrolled in the course. 
-Please do not re-distribute or publish this code without written permision from Tue Herlau (tuhe@dtu.dk).
\ No newline at end of file
diff --git a/README.md b/README.md
index 16f655bf52c81a0bc45d88c618e6ac82be3a506a..eae0c4b477aacc89b3e5db37c25659d6eeed9e09 100644
--- a/README.md
+++ b/README.md
@@ -3,3 +3,9 @@
 This repository contains code for 02465, introduction to machine learning and control theory. For installation instructions and course material please see:
 
  - https://www2.compute.dtu.dk/courses/02465/information/installation.html
+
+
+## License
+Some of the code in this repository is not written by me and the licensing terms are as indicated in the relevant files.
+
+Files authored by me are only intended for educational purposes. Please do not re-distribute or publish this code without written permision from Tue Herlau (tuhe@dtu.dk)
diff --git a/environment.yml b/environment.yml
index 799db1418e2d32fdb07b6fd7ef668a315ef17d1b..dcb17c4aaf1906927a5d9d5033331f0ad3cd6a29 100644
--- a/environment.yml
+++ b/environment.yml
@@ -1,15 +1,14 @@
-# On linux, you should run this command (or equivalent) also need these packages:
-# > apt install build-essential python3.11-dev swig
+# On linux or MacOS, if you are *not* installing conda, you should install these packages:
+# apt install build-essential python3.11-dev swig
 # (replace 3.11 with your python version; for instance python3.12-dev.
 
-name: irlcenv
+name: irlcenv # You can give the environment another name. It is activate by `conda activate irlcenv`
 channels:
   - pytorch
   - conda-forge
-  #  - nodefaults
 dependencies:
   - python
-  - gymnasium-box2d>=1.0.0
+  - gymnasium[box2d]>=1.0.0
   - pytorch
   - sympy
   - tqdm
@@ -17,7 +16,7 @@ dependencies:
   - pillow
   - scikit-learn
   - matplotlib
-  - requests # Required when updating the local files (read stuff from gitlab).
+  - requests
   - qtpy # Try pyqt, pyqt6 on other platforms.
   - pygame
   - pip