2
2
3
3
## Environment (Conda)
4
4
5
- With conda, you can create, export, list, remove, and update environments
5
+ With conda, you can create, export, list, remove, and update environments
6
6
that have different versions of Python and/or packages installed in them. <br >
7
7
Switching or moving between environments is called activating the environment.
8
8
You can also share an environment file and import from ` requirements.txt ` .
@@ -11,23 +11,20 @@ You can also share an environment file and import from `requirements.txt`.
11
11
💻 ` activate py310 ` Activate environment <br >
12
12
💻 ` python --version ` Check python version
13
13
14
-
15
14
## Requirements
16
15
17
- In Python the ` requirements.txt ` file helps manage dependencies.
16
+ In Python the ` requirements.txt ` file helps manage dependencies.
18
17
It's a text file that lists the packages that the Python project depends on.
19
18
20
19
💻 ` pip install -r requirements.txt ` Install from file
21
20
22
-
23
21
## Pyproject
24
22
25
- This python package contains a ` pyproject.toml ` file that contains
26
- build system requirements and information, which are
27
- [ used by pip] ( https://pip.pypa.io/en/stable/reference/build-system/pyproject-toml/ )
23
+ This python package contains a ` pyproject.toml ` file that contains
24
+ build system requirements and information, which are
25
+ [ used by pip] ( https://pip.pypa.io/en/stable/reference/build-system/pyproject-toml/ )
28
26
to build the package.
29
27
It contains the metadata of the software project.
30
28
31
-
32
29
!!! note "Used Icons"
33
30
🐙 GitHub | 💠 git | 📝 File | 💻 Command Line
0 commit comments