Skip to content

Commit 43c013e

Browse files
New translations install.md (Tamil)
1 parent 47ea69c commit 43c013e

File tree

1 file changed

+18
-16
lines changed

1 file changed

+18
-16
lines changed

content/ta/install.md

Lines changed: 18 additions & 16 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

@@ -89,10 +95,7 @@ choco install numpy
8995

9096
'''
9197

92-
[[tab]]
93-
name = 'Building from Source'
94-
content = '''
95-
For advanced users and developers who want to customize or debug **NumPy**.
98+
[[tab]] name = 'Building from Source' content = ''' For advanced users and developers who want to customize or debug **NumPy**.
9699

97100
A word of warning: building Numpy from source can be a nontrivial exercise.
98101
We recommend using binaries instead if those are available for your platform via one of the above methods.
@@ -113,8 +116,7 @@ This should print the installed version of NumPy without errors.
113116

114117
## Troubleshooting
115118

116-
If your installation fails with the message below, see Troubleshooting
117-
ImportError.
119+
If your installation fails with the message below, see [Troubleshooting ImportError](https://numpy.org/doc/stable/user/troubleshooting-importerror.html).
118120

119121
```
120122
IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!

0 commit comments

Comments
 (0)