Skip to content

Commit b600ebb

Browse files
New translations install.md (Russian)
1 parent 3f060ba commit b600ebb

File tree

1 file changed

+16
-10
lines changed

1 file changed

+16
-10
lines changed

content/ru/install.md

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,14 @@ content = '''
2424
Recommended for new users who want a streamlined workflow.
2525

2626
- **uv:** A modern Python package manager designed for speed and simplicity.
27-
28-
uv pip install numpy
27+
```bash
28+
uv pip install numpy
29+
```
2930

3031
- **pixi:** A cross-platform package manager for Python and other languages.
31-
32-
pixi add numpy
32+
```bash
33+
pixi add numpy
34+
```
3335

3436
'''
3537

@@ -46,21 +48,25 @@ The second difference is that pip installs from the Python Packaging Index (PyPI
4648
The third difference is that conda is an integrated solution for managing packages, dependencies and environments, while with pip you may need another tool (there are many!) for dealing with environments or complex dependencies.
4749

4850
- **Conda:** If you use conda, you can install NumPy from the defaults or conda-forge channels:
49-
50-
conda create -n my-env
51-
conda activate my-env
52-
conda install numpy
51+
```bash
52+
conda create -n my-env
53+
conda activate my-env
54+
conda install numpy
55+
```
5356
- **Pip:**
54-
55-
pip install numpy
57+
```bash
58+
pip install numpy
59+
```
5660

5761
{{< admonition >}}
5862
{{< /admonition >}}
5963

64+
```bash
6065
python -m venv my-env
6166
source my-env/bin/activate # macOS/Linux
6267
my-env\Scripts\activate # Windows
6368
pip install numpy
69+
```
6470

6571
'''
6672

0 commit comments

Comments
 (0)