-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathenvironment.yml
More file actions
33 lines (28 loc) · 991 Bytes
/
environment.yml
File metadata and controls
33 lines (28 loc) · 991 Bytes
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
name: eds217_2025
channels:
- conda-forge
dependencies:
# Core Python
- python=3.11
# Essential Data Science Libraries (with minimum versions for stability)
- numpy>=2.3,<3.0
- pandas>=2.3,<3.0
- matplotlib>=3.9,<4.0
- seaborn>=0.13,<1.0
# Jupyter Ecosystem
- jupyter
- jupyterlab>=4.4,<5.0
- ipykernel>=6.30
# Scientific Computing
- scipy>=1.11
# Additional Useful Libraries (Optional but Recommended)
- requests>=2.31 # Web data access, API calls
- beautifulsoup4>=4.12 # Web scraping, HTML parsing
- openpyxl>=3.1 # Excel file support (.xlsx)
- xlrd>=2.0 # Legacy Excel file support (.xls)
- lxml>=4.9 # XML/HTML parsing (faster than built-in)
- plotly>=5.17 # Interactive visualizations
- scikit-learn>=1.3 # Basic machine learning tools
- statsmodels>=0.14 # Statistical modeling
# Development Tools
- pip # Package installer