File size: 1,839 Bytes
68a60e6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23e4890
68a60e6
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# PyTorch Python 3.10 Wheel Collection

Complete PyTorch ML stack with all dependencies - no conflicts, easy installation.

## 📋 What's Included

- **Python:** 3.10 compatible
- **PyTorch:** 2.7.1 + CUDA 12.6
- **Transformers:** 4.52.3
- **NumPy:** 1.26.4 (compatible version)
- **SciPy:** 1.15.2
- **All Dependencies:** 80+ wheels, fully tested together

## 🚀 Installation (Super Easy!)

**One command installation from HuggingFace:**

```bash

# Download and install everything

from huggingface_hub import snapshot_download

import subprocess

import os



# Download all wheels

repo_path = snapshot_download(repo_id="RDHub/pytorch_python_310")

wheel_path = os.path.join(repo_path, "lib_wheel")



# Install all wheels

subprocess.run(["pip", "install"] + [f"{wheel_path}/*.whl"], shell=True)

```

**Or manually:**

```bash

# 1. Download repository

git clone https://huggingface.co/RDHub/pytorch_python_310



# 2. Install everything

cd pytorch_python_310

pip install lib_wheel/*.whl



# 3. Test (optional)

python -c "import torch; print(f'PyTorch {torch.__version__} - CUDA: {torch.cuda.is_available()}')"

```

## ✅ Key Versions

| Package | Version | Python |
|---------|---------|---------|
| PyTorch | 2.7.1 | 3.10 |
| Transformers | 4.52.3 | 3.10 |
| NumPy | 1.26.4 | 3.10 |
| CUDA | 12.6 | - |

## 🎯 Use Cases

Perfect for:
- Machine Learning projects
- Large Language Model training
- Computer Vision
- Audio processing
- Research environments

## 📝 Notes

- **No dependency conflicts** - all versions tested together
- **Offline ready** - no internet needed after download
- **CUDA included** - ready for GPU training
- **Linux x86_64** compatible



---



**Repository Size:** ~2GB  

**Total Packages:** 80+ wheels  

**Tested:** Ubuntu 22.04, Python 3.10