-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment.yml
20 lines (20 loc) · 886 Bytes
/
environment.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: intro_env
channels:
- conda-forge
- defaults
dependencies:
- python=3.9 # Recent stable version of Python
- pip # Used to download and install packages
- jupyter # A simple code editor
- jupyterlab # A more advanced code editor
- ipykernel # How the code editor accesses this collection of software packages
- numpy # "Numerical Python" - numerical methods
- scipy # "Scientific Python" - more numerical methods
- pandas # Data wrangling, spreadsheet like
- openpyxl # Needed to open xls files in Pandas
- matplotlib # Primary plotting package
- seaborn # Advanced static plotting package
- plotly # Advanced dynamic plotting package
- pip:
- xlrd==2.0.1 # Used to read xls files
- chemicals # Steam tables (and lots of other stuff for reservoir and process engineering)