Upload REQUIREMENTS.md with huggingface_hub
Browse files- REQUIREMENTS.md +52 -0
REQUIREMENTS.md
ADDED
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Requirements
|
2 |
+
|
3 |
+
## System Requirements
|
4 |
+
- Python 3.8+
|
5 |
+
- PowerShell 5.1+ (Windows) or PowerShell Core 7+ (Linux/Mac)
|
6 |
+
- Git
|
7 |
+
- 8GB+ RAM for Ollama
|
8 |
+
- Network access to VMware infrastructure
|
9 |
+
|
10 |
+
## Python Dependencies
|
11 |
+
```
|
12 |
+
pyvmomi>=7.0.3
|
13 |
+
requests>=2.31.0
|
14 |
+
pandas>=2.0.0
|
15 |
+
numpy>=1.24.0
|
16 |
+
pyyaml>=6.0
|
17 |
+
click>=8.1.0
|
18 |
+
rich>=13.0.0
|
19 |
+
```
|
20 |
+
|
21 |
+
## VMware Infrastructure
|
22 |
+
- vCenter Server 6.7+ or 7.0+
|
23 |
+
- ESXi hosts 6.7+ or 7.0+
|
24 |
+
- Administrative credentials
|
25 |
+
- Network connectivity to management interfaces
|
26 |
+
|
27 |
+
## Installation
|
28 |
+
|
29 |
+
### Linux/Mac
|
30 |
+
```bash
|
31 |
+
pip3 install pyvmomi requests pandas
|
32 |
+
# Install PowerShell Core for PowerCLI
|
33 |
+
pwsh -Command "Install-Module VMware.PowerCLI -Force"
|
34 |
+
```
|
35 |
+
|
36 |
+
### Windows
|
37 |
+
```powershell
|
38 |
+
pip install pyvmomi requests pandas
|
39 |
+
Install-Module VMware.PowerCLI -Force
|
40 |
+
```
|
41 |
+
|
42 |
+
## Ollama Setup
|
43 |
+
```bash
|
44 |
+
# Install Ollama
|
45 |
+
curl -fsSL https://ollama.ai/install.sh | sh
|
46 |
+
|
47 |
+
# Pull model
|
48 |
+
ollama pull radoni/vmware-infrastructure-automation-ai
|
49 |
+
|
50 |
+
# Run
|
51 |
+
ollama run radoni/vmware-infrastructure-automation-ai
|
52 |
+
```
|