Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
python-overview
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
lkluft
python-overview
Compare revisions
505fae888937dfd86693d8f2da8ca7b55c77a0cd to 10a5974eb2c2985fe9b8f7082ca13a45ec3b63d8
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
lkluft/python-overview
Select target project
No results found
10a5974eb2c2985fe9b8f7082ca13a45ec3b63d8
Select Git revision
Branches
main
Swap
Target
lkluft/python-overview
Select target project
lkluft/python-overview
1 result
505fae888937dfd86693d8f2da8ca7b55c77a0cd
Select Git revision
Branches
main
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Fix typo
· 51dc20e1
Lukas Kluft
authored
10 months ago
Verified
51dc20e1
Fix environment.yaml example
· 10a5974e
Lukas Kluft
authored
10 months ago
Verified
10a5974e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
slides.qmd
+2
-1
2 additions, 1 deletion
slides.qmd
with
2 additions
and
1 deletion
slides.qmd
View file @
10a5974e
...
...
@@ -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 `vir
u
talenv`) is shipped with the standard library
* [`venv`](https://docs.python.org/3/library/venv.html) (formerly known as `virt
u
alenv`) 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
...
...
This diff is collapsed.
Click to expand it.