Skip to content

Commit d423adb

Browse files
Update environments.md
1 parent 1df0986 commit d423adb

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

book/environments.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,16 +64,14 @@ Another popular environment manager is Python itself, via it's own virtual envir
6464

6565
### Choosing an Environment Manager
6666

67-
If you are a student, chances are the choice of environment manager has already been made for you. If not, you have a choice to make!
67+
If you are a student, chances are the choice of environment manager has already been made for you. At TU Delft conda is used for creating a consistent python environment on TU Delft computers. Therefore, in many courses this same environment is used.
6868

6969
The use of Python virtual environments (`venv`) should be seen as an alternative to `conda` (especially if you installed Anaconda or Miniconda). If you are working primarily with Python packages available on `conda-forge` or PyPI, a `conda` environments will most likely work the same (and can also be easily selected from within VS Code). However, Python virtual environments (`venv`) can be created much more quickly than `conda` environments, and may enable you to manage your Python packages more efficiently in future projects.
7070

7171
However, note that `conda` comes with its own set of advantages, for example, in addition to support beyond Python packages, it has an improved ability to solve for package dependencies, which provides more reliability when distributing more complex software.
7272

7373
## Environment Variables
7474

75-
Modern computers have _environment variables_, which are used to define the behavior of your operating system (which is itself a type of computing environment). These variables are generally not important for most applications covered in this book, as we will focus on computing environments that are more distant from the operating system (for example, a Python environment; not the operating system directly). However, _in particular for users with a Windows operating system,_ it is often needed to change the `PATH` environment variable to make sure various software can be used via a CLI.
75+
Modern computers have _environment variables_, which are used to define the behavior of your operating system (which is itself a type of computing environment). These variables are generally not important for most applications covered in this book, as we will focus on computing environments that are more distant from the operating system (for example, a Python environment; not the operating system directly).
7676

77-
Instructions for changing your `PATH` variable on Windows can be found via {ref}`this link <env-vars-windows>`.
78-
79-
Feel free to visit the [wikipedia page](https://en.wikipedia.org/wiki/Environment_variable) for additional explanation or examples.
77+
Feel free to visit the [wikipedia page](https://en.wikipedia.org/wiki/Environment_variable) for additional explanation or examples.

0 commit comments

Comments
 (0)