Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • lkluft/python-overview
1 result
Show changes
Commits on Source (2)
......@@ -97,7 +97,7 @@ General purpose package managers can help to install different python interprete
* Allows you to have a specific combination of libraries/binaries/packages for a project
* You can manage different environments side-by-side
* [`venv`](https://docs.python.org/3/library/venv.html) (formerly known as `virutalenv`) is shipped with the standard library
* [`venv`](https://docs.python.org/3/library/venv.html) (formerly known as `virtualenv`) is shipped with the standard library
* Tools to handle general software environments (e.g. `conda`)
:::{.notes}
......@@ -190,6 +190,7 @@ name: my_env
channels:
- conda-forge
dependencies:
- python=3.12
- matplotlib
- numpy
- scipy
......