-
Notifications
You must be signed in to change notification settings - Fork 0
/
notes.txt
33 lines (26 loc) · 860 Bytes
/
notes.txt
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
A few notes for myself about the libraries and tools I used in this project.
I am using Python 3.11.7
I am using VS Code with Juyter Notebook extension(s).
When I installed Pandas, it produced a deprecation notice about pyarrow.
I am including pyarrow as a separate pip install.
I have also added Jupyter Lab and Notebook into my requirements.txt file.
That should help anyone who is not using VS Code with Jupyter extensions.
A reminder on how to interact with Jupyter Notebook
To run Jupyter Notebook classic, use "jupyter notebook"
To run Jupyter Labs, use "jupyter lab"
Former requirements.txt file, without versioning:
pandas
pyarrow
jupyterlab
notebook
openpyxl
matplotlib
numpy
New requirements.txt file with versioning:
pandas==2.2.0
pyarrow==15.0.0
jupyterlab==4.0.12
notebook==7.0.7
openpyxl==3.1.2
matplotlib==3.8.3
numpy==1.26.3