(base) PS C:\Users\xxxxx>
conda activate py310
(py310) PS C:\Users\xxxxx> python C:\Users\xxxxx\my_code\bubble_sort2.py
(py310) PS C:\Users\xxxxx> python C:\Users\xxxxx\my_code\bar_chart_sorting.py
In a jupyter notebook cell, run
!python "C:/Users/xxxxx/my_code/ bubble_sort2.py" !python "C:/Users/xxxxx/my_code /bar_chart_sorting.py"
>>> exit()
Classic Notebook
(py310) PS C:\Users\xxxxx> jupyter notebook
(py310) PS C:\Users\xxxxx> jupyter lab
(base) PS C:\Users\xxxxx> conda activate py310
(py310) PS C:\Users\xxxxx> pip install plotly statsmodels
import pandas as pd
import sys
print('Python Version:'+ system.version)
Python Version:3.10.20 | packaged by Anaconda, Inc. | (main, Mar 11 2026, 17:42:35) [MSC v.1942 64 bit (AMD64)]
print('Pandas Version : ' + pd.__version__
+ sys.version)
Pandas Version : 2.3.33.10.20 | packaged by Anaconda, Inc. | (main, Mar 11 2026, 17:42:35) [MSC v.1942 64 bit (AMD64)]
Windows Powershell
Using python interpreter
(py310) PS C:\Users\xxxxx> python
Using PowerShell Python Interpreter
>>> import pandas as pd
>>> titanic = pd.read_csv('/users/
xxxxx/projects/titanic.csv')
>>> titanic
PassengerId Survived Pclass ...
Fare Cabin Embarked
0 1 0 3 ...
7.2500 NaN S
1 2 1 1 ...
71.2833 C85 C
2 3 1 3 ...
7.9250 NaN S
3 4 1 1 ...
53.1000 C123 S
4 5 0 3 ...
8.0500 NaN S
.. ... ... ... ...
... ... ...
886 887 0 2 ...
13.0000 NaN S
887 888 1 1 ...
30.0000 B42 S
888 889 0 3 ...
23.4500 NaN S
889 890 1 1 ...
30.0000 C148 C
890 891 0 3 ...
7.7500 NaN Q
[891 rows x 12 columns]
Using jupyter notebook.

Using PowerShell Python Interpreter
Training on how to create data frame lesson 1.
data = ['Sunday',
'Monday',
'Tuesday',
'Wednesday',
'Thursday',
'Friday',
'Saturday']
# comment do shift + enter to create your data list of name of the week.
Using jupyter notebook.


Using PowerShell Python Interpreter
Training on how to create country data frame or column name is country.
>>> invbat_com_AI_top10_user_country = [
... 'United States','Vietnam','China','Japan','Canada',
... 'India','Netherlands','Brazil','Poland','Great Britain'
... ]
>>>
>>> df = pd.DataFrame(invbat_com_AI_top10
_user_country, columns=['country'])
>>> df
country
0 United States
1 Vietnam
2 China
3 Japan
4 Canada
5 India
6 Netherlands
7 Brazil
8 Poland
9 Great Britain
>>>
Using jupyter notebook.

Using PowerShell Python Interpreter
Training on how to create Number of User data frame or column name is Users.
>>> import pandas as pd
>>>
>>> Number_of_User = ['37,281','7,905','2,758','2,752', '2,096','1,982','1,002',
... '984', '934', '635']
>>> df = pd.DataFrame(Number_of_User, columns=['Users'])
>>> df
Users
0 37,281
1 7,905
2 2,758
3 2,752
4 2,096
5 1,982
6 1,002
7 984
8 934
9 635
>>>
Using jupyter notebook.

Using PowerShell Python Interpreter
Training on how to create country and users data frame or two column tables Country and Users
>>> import pandas as pd
>>>
>>> invbat_com_AI_top10_user_country = [
... 'United States','Vietnam','China','Japan','Canada',
... 'India','Netherlands','Brazil','Poland','Great Britain'
... ]
>>> Number_of_User = [
... '37,281','7,905','2,758','2,752','2,096',
... '1,982','1,002','984','934','635'
... ]
>>>
>>>
>>> df = pd.DataFrame({
... 'country': invbat_com_AI_top10_user_country,
... 'users': Number_of_User
... })
>>>
>>> df
country users
0 United States 37,281
1 Vietnam 7,905
2 China 2,758
3 Japan 2,752
4 Canada 2,096
5 India 1,982
6 Netherlands 1,002
7 Brazil 984
8 Poland 934
9 Great Britain 635
>>>
Using jupyter notebook.

Show all pandas functions, classes, and attributes.
>>> dir(pd)
['BooleanDtype', 'Categorical', 'CategoricalDtype', 'CategoricalIndex', 'DataFrame', 'DateOffset', 'DatetimeIndex', 'DatetimeTZDtype', 'ExcelFile', 'ExcelWriter', 'Float64Index', 'Grouper', 'HDFStore', 'Index', 'IndexSlice', 'Int16Dtype', 'Int32Dtype', 'Int64Dtype', 'Int64Index', 'Int8Dtype', 'Interval', 'IntervalDtype', 'IntervalIndex', 'MultiIndex', 'NA', 'NaT', 'NamedAgg', 'Period', 'PeriodDtype', 'PeriodIndex', 'RangeIndex', 'Series', 'SparseDtype', 'StringDtype', 'Timedelta', 'TimedeltaIndex', 'Timestamp', 'UInt16Dtype', 'UInt32Dtype', 'UInt64Dtype', 'UInt64Index', 'UInt8Dtype', '__builtins__', '__cached__', '__doc__', '__docformat__', '__file__', '__getattr__', '__git_version__', '__loader__', '__name__', '__package__', '__path__', '__spec__', '__version__', '_config', '_hashtable', '_lib', '_libs', '_np_version_under1p14', '_np_version_under1p15', '_np_version_under1p16', '_np_version_under1p17', '_np_version_under1p18', '_testing', '_tslib', '_typing', '_version', 'api', 'array', 'arrays', 'bdate_range', 'compat', 'concat', 'core', 'crosstab', 'cut', 'date_range', 'describe_option', 'errors', 'eval', 'factorize', 'get_dummies', 'get_option', 'infer_freq', 'interval_range', 'io', 'isna', 'isnull', 'json_normalize', 'lreshape', 'melt', 'merge', 'merge_asof', 'merge_ordered', 'notna', 'notnull', 'offsets', 'option_context', 'options', 'pandas', 'period_range', 'pivot', 'pivot_table', 'plotting', 'qcut', 'read_clipboard', 'read_csv', 'read_excel', 'read_feather', 'read_fwf', 'read_gbq', 'read_hdf', 'read_html', 'read_json', 'read_orc', 'read_parquet', 'read_pickle', 'read_sas', 'read_spss', 'read_sql', 'read_sql_query', 'read_sql_table', 'read_stata', 'read_table', 'reset_option', 'set_eng_float_format', 'set_option', 'show_versions', 'test', 'testing', 'timedelta_range', 'to_datetime', 'to_numeric', 'to_pickle', 'to_timedelta', 'tseries', 'unique', 'util', 'value_counts', 'wide_to_long']
>>>pd.__version__
(py310) PS C:\Users\xxxxx> cd "C:\Users\xxxxx\anaconda3\envs\py310\Lib\site-packages\matplotlib"
(py310) PS C:\Users\xxxxx\anaconda3\envs\py310\Lib\site-packages\matplotlib> dir
Directory: C:\Users\xxxxx\anaconda3\envs\py310\Lib\site-packages\matplotlib
Length Name
------ ----
axes
backends
mpl-data
projections
sphinxext
style
testing
tests
tri
_api
__pycache__
73744 animation.py
6566 animation.pyi
63374 artist.py
7336 artist.pyi
104714 axis.py
10181 axis.pyi
131953 backend_bases.py
16270 backend_bases.pyi
11795 backend_managers.py
2253 backend_managers.pyi
33491 backend_tools.py
4142 backend_tools.pyi
19049 bezier.py
2586 bezier.pyi
7377 category.py
80020 cbook.py
6037 cbook.pyi
10350 cm.py
939 cm.pyi
96311 collections.py
10775 collections.pyi
60687 colorbar.py
4966 colorbar.pyi
25180 colorizer.py
3308 colorizer.pyi
137303 colors.py
14908 colors.pyi
4565 container.py
1805 container.pyi
68479 contour.py
5300 contour.pyi
66306 dates.py
42590 dviread.py
2139 dviread.pyi
142126 figure.py
14914 figure.pyi
57651 font_manager.py
5052 font_manager.pyi
979456 ft2font.cp310-win_amd64.pyd
9259 ft2font.pyi
29786 gridspec.py
5099 gridspec.pyi
7453 hatch.py
2098 hatch.pyi
69765 image.py
7066 image.pyi
10154 inset.py
968 inset.pyi
11433 layout_engine.py
1788 layout_engine.pyi
55343 legend.py
5364 legend.pyi
29872 legend_handler.py
7655 legend_handler.pyi
57920 lines.py
6081 lines.pyi
33708 markers.py
1678 markers.pyi
5104 mathtext.py
1045 mathtext.pyi
30210 mlab.py
3583 mlab.pyi
54490 offsetbox.py
9909 offsetbox.pyi
165064 patches.py
22649 patches.pyi
43269 path.py
4808 path.pyi
18387 patheffects.py
3664 patheffects.pyi
0 py.typed
2369 pylab.py
149717 pyplot.py
48676 quiver.py
5640 quiver.pyi
52790 rcsetup.py
4337 rcsetup.pyi
36151 sankey.py
1451 sankey.pyi
26924 scale.py
5057 scale.pyi
21923 spines.py
2951 spines.pyi
4997 stackplot.py
561 stackplot.pyi
24011 streamplot.py
2690 streamplot.pyi
27744 table.py
3098 table.pyi
15338 texmanager.py
1116 texmanager.pyi
70856 text.py
7021 text.pyi
13254 textpath.py
2529 textpath.pyi
107381 ticker.py
10604 ticker.pyi
99763 transforms.py
12102 transforms.pyi
2439 typing.py
6429 units.py
152774 widgets.py
15383 widgets.pyi
16692 _afm.py
7986 _animation_data.py
1224 _blocking_input.py
68014 _cm.py
97461 _cm_bivar.py
135004 _cm_listed.py
6630 _cm_multivar.py
34780 _color_data.py
170 _color_data.pyi
31485 _constrained_layout.py
157696 _c_internal_utils.cp310-win_amd64.pyd
377 _c_internal_utils.pyi
4435 _docstring.py
800 _docstring.pyi
6175 _enums.py
326 _enums.pyi
4365 _fontconfig_pattern.py
356352 _image.cp310-win_amd64.pyd
0 _image.pyi
2140 _internal_utils.py
21676 _layoutgrid.py
107336 _mathtext.py
65067 _mathtext_data.py
316928 _path.cp310-win_amd64.pyd
325 _path.pyi
4307 _pylab_helpers.py
1012 _pylab_helpers.pyi
599552 _qhull.cp310-win_amd64.pyd
0 _qhull.pyi
2538 _text_helpers.py
2787 _tight_bbox.py
12675 _tight_layout.py
291840 _tri.cp310-win_amd64.pyd
1429 _tri.pyi
28409 _type1font.py
19 _version.py
55823 __init__.py
3439 __init__.pyi
How to install pandas upgrade.
>>> exit()
PS C:\Users\xxxxx> pip install --upgrade pandas
PS C:\Users\xxxxx> conda init powershell
no change C:\Users\xxxxx\anaconda3\Scripts\
conda.exe
no change C:\Users\xxxxx\anaconda3\Scripts\conda-env.exe
no change C:\Users\xxxxx\anaconda3\Scripts\conda-script.py
no change C:\Users\xxxxx\anaconda3\Scripts\conda-env-script.py
no change C:\Users\xxxxx\anaconda3\condabin\conda.bat
no change C:\Users\xxxxx\anaconda3\Library\bin\conda.bat
no change C:\Users\xxxxx\anaconda3\condabin\_conda
_activate.bat
no change C:\Users\xxxxx\anaconda3\condabin\rename
_tmp.bat
no change C:\Users\xxxxx\anaconda3\condabin\conda_
auto_activate.bat
no change C:\Users\xxxxx\anaconda3\condabin\conda_
hook.bat
no change C:\Users\xxxxx\anaconda3\Scripts\activate.bat
no change C:\Users\xxxxx\anaconda3\condabin\
activate.bat
no change C:\Users\xxxxx\anaconda3\condabin\
deactivate.bat
modified C:\Users\xxxxx\anaconda3\Scripts\activate
modified C:\Users\xxxxx\anaconda3\Scripts\deactivate
modified C:\Users\xxxxx\anaconda3\etc\profile.d\
conda.sh
modified C:\Users\xxxxx\anaconda3\etc\fish\conf.d\
conda.fish
no change C:\Users\xxxxx\anaconda3\shell\condabin\
Conda.psm1
modified C:\Users\xxxxx\anaconda3\shell\condabin\conda-
hook.ps1
no change C:\Users\xxxxx\anaconda3\Lib\site-packages\
xontrib\conda.xsh
modified C:\Users\xxxxx\anaconda3\etc\profile.d\conda.csh
modified C:\Users\xxxxx\OneDrive\Documents\Windows
PowerShell\profile.ps1
==> For changes to take effect, close and re-open your current shell. <==
PS C:\Users\xxxxx>
PS C:\Users\xxxxx>Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned
Loading personal and system profiles took 1403ms.
(base) PS C:\Users\xxxxx>
## Package Plan ##
environment location: C:\Users\xxxxx\anaconda3\envs\py310
added / updated specs:
- python=3.10
The following packages will be downloaded:
package | build
---------------------------|-----------------
bzip2-1.0.8 | h2bbff1b_6 90 KB
ca-certificates-2026.3.19 | haa95532_0 126 KB
libexpat-2.8.0 | hd7fb8db_0 122 KB
libffi-3.4.8 | h2b21627_2 118 KB
libzlib-1.3.1 | h1c6eee0_1 62 KB
openssl-3.5.6 | hbb43b14_0 8.9 MB
packaging-26.0 | py310haa95532_0 166 KB
pip-26.0.1 | pyhc872135_1 1.1 MB
python-3.10.20 | h1044e36_0 15.5 MB
setuptools-82.0.1 | py310haa95532_0 1.2 MB
sqlite-3.51.2 | hee5a0db_0 917 KB
tk-8.6.15 | hf199647_0 3.5 MB
tzdata-2026a | he532380_0 117 KB
ucrt-10.0.22621.0 | haa95532_0 620 KB
vc-14.3 | h2df5915_10 19 KB
vc14_runtime-14.44.35208 | h4927774_10 825 KB
vs2015_runtime-14.44.35208 | ha6b5a95_10 19 KB
wheel-0.46.3 | py310haa95532_0 78 KB
xz-5.8.2 | h53af0af_0 265 KB
zlib-1.3.1 | h1c6eee0_1 104 KB
---------------------------------------------
Total: 33.8 MB
The following NEW packages will be INSTALLED:
bzip2 pkgs/main/win-64::bzip2-1.0.8-h2bbff1b_6
ca-certificates pkgs/main/win-64::ca-certificates-2026.3.19-haa95532_0
libexpat pkgs/main/win-64::libexpat-2.8.0-hd7fb8db_0
libffi pkgs/main/win-64::libffi-3.4.8-h2b21627_2
libzlib pkgs/main/win-64::libzlib-1.3.1-h1c6eee0_1
openssl pkgs/main/win-64::openssl-3.5.6-hbb43b14_0
packaging pkgs/main/win-64::packaging-26.0-py310haa95532_0
pip pkgs/main/noarch::pip-26.0.1-pyhc872135_1
python pkgs/main/win-64::python-3.10.20-h1044e36_0
setuptools pkgs/main/win-64::setuptools-82.0.1-py310haa95532_0
sqlite pkgs/main/win-64::sqlite-3.51.2-hee5a0db_0
tk pkgs/main/win-64::tk-8.6.15-hf199647_0
tzdata pkgs/main/noarch::tzdata-2026a-he532380_0
ucrt pkgs/main/win-64::ucrt-10.0.22621.0-haa95532_0
vc pkgs/main/win-64::vc-14.3-h2df5915_10
vc14_runtime pkgs/main/win-64::vc14_runtime-14.44.35208-h4927774_10
vs2015_runtime pkgs/main/win-64::vs2015_runtime-14.44.35208-ha6b5a95_10
wheel pkgs/main/win-64::wheel-0.46.3-py310haa95532_0
xz pkgs/main/win-64::xz-5.8.2-h53af0af_0
zlib pkgs/main/win-64::zlib-1.3.1-h1c6eee0_1
Proceed ([y]/n)? y
(base) PS C:\Users\xxxxx> conda activate py310
(py310) PS C:\Users\xxxxx> pip install pandas
Collecting pandas
Downloading pandas-2.3.3-cp310-cp310-win_amd64.whl.metadata (19 kB)
Collecting numpy>=1.22.4 (from pandas)
Downloading numpy-2.2.6-cp310-cp310-win_amd64.whl.metadata (60 kB)
Collecting python-dateutil>=2.8.2 (from pandas)
Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB)
Collecting pytz>=2020.1 (from pandas)
Downloading pytz-2026.2-py2.py3-none-any.whl.metadata (22 kB)
Collecting tzdata>=2022.7 (from pandas)
Downloading tzdata-2026.2-py2.py3-none-any.whl.metadata (1.4 kB)
Collecting six>=1.5 (from python-dateutil>=2.8.2->pandas)
Downloading six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB)
Downloading pandas-2.3.3-cp310-cp310-win_amd64.whl (11.3 MB)
━━11.3/11.3 MB 7.2 MB/s 0:00:01
Downloading numpy-2.2.6-cp310-cp310-win_amd64.whl (12.9 MB)
━━━━━━━━━━━━━━━━━━ 12.9/12.9 MB 10.2 MB/s 0:00:01
Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB)
Downloading pytz-2026.2-py2.py3-none-any.whl (510 kB)
Downloading six-1.17.0-py2.py3-none-any.whl (11 kB)
Downloading tzdata-2026.2-py2.py3-none-any.whl (349 kB)
Installing collected packages: pytz, tzdata, six, numpy, python-dateutil, pandas
Successfully installed numpy-2.2.6 pandas-2.3.3 python-dateutil-2.9.0.post0 pytz-2026.2 six-1.17.0 tzdata-2026.2
(py310) PS C:\Users\xxxxx> pip install numpy pandas matplotlib seaborn scipy scikit-learn jupyter
Requirement already satisfied: numpy in .\anaconda3\envs\py310\lib\site-packages (2.2.6)
Requirement already satisfied: pandas in .\anaconda3\envs\py310\lib\site-packages (2.3.3)
Collecting matplotlib
Downloading matplotlib-3.10.9-cp310-cp310-win_amd64.whl.metadata (52 kB)
Collecting seaborn
Downloading seaborn-0.13.2-py3-none-any.whl.metadata (5.4 kB)
Collecting scipy
Downloading scipy-1.15.3-cp310-cp310-win_amd64.whl.metadata (60 kB)
Collecting scikit-learn
Downloading scikit_learn-1.7.2-cp310-cp310-win_amd64.whl.metadata (11 kB)
Collecting jupyter
Downloading jupyter-1.1.1-py2.py3-none-any.whl.metadata (2.0 kB)
Requirement already satisfied: python-dateutil>=2.8.2 in .\anaconda3\envs\py310\lib\site-packages (from pandas) (2.9.0.post0)
Requirement already satisfied: pytz>=2020.1 in .\anaconda3\envs\py310\lib\site-packages (from pandas) (2026.2)
Requirement already satisfied: tzdata>=2022.7 in .\anaconda3\envs\py310\lib\site-packages (from pandas) (2026.2)
Collecting contourpy>=1.0.1 (from matplotlib)
Downloading contourpy-1.3.2-cp310-cp310-win_amd64.whl.metadata (5.5 kB)
Collecting cycler>=0.10 (from matplotlib)
Downloading cycler-0.12.1-py3-none-any.whl.metadata (3.8 kB)
Collecting fonttools>=4.22.0 (from matplotlib)
Downloading fonttools-4.63.0-cp310-cp310-win_amd64.whl.metadata (121 kB)
Collecting kiwisolver>=1.3.1 (from matplotlib)
Downloading kiwisolver-1.5.0-cp310-cp310-win_amd64.whl.metadata (5.2 kB)
Requirement already satisfied: packaging>=20.0 in .\anaconda3\envs\py310\lib\site-packages (from matplotlib) (26.0)
Collecting pillow>=8 (from matplotlib)
Downloading pillow-12.2.0-cp310-cp310-win_amd64.whl.metadata (9.0 kB)
Collecting pyparsing>=3 (from matplotlib)
Downloading pyparsing-3.3.2-py3-none-any.whl.metadata (5.8 kB)
Collecting joblib>=1.2.0 (from scikit-learn)
Downloading joblib-1.5.3-py3-none-any.whl.metadata (5.5 kB)
Collecting threadpoolctl>=3.1.0 (from scikit-learn)
Downloading threadpoolctl-3.6.0-py3-none-any.whl.metadata (13 kB)
Collecting notebook (from jupyter)
Downloading notebook-7.5.6-py3-none-any.whl.metadata (10 kB)
Collecting jupyter-console (from jupyter)
Downloading jupyter_console-6.6.3-py3-none-any.whl.metadata (5.8 kB)
Collecting nbconvert (from jupyter)
Downloading nbconvert-7.17.1-py3-none-any.whl.metadata (8.4 kB)
Collecting ipykernel (from jupyter)
Downloading ipykernel-7.2.0-py3-none-any.whl.metadata (4.5 kB)
Collecting ipywidgets (from jupyter)
Downloading ipywidgets-8.1.8-py3-none-any.whl.metadata (2.4 kB)
Collecting jupyterlab (from jupyter)
Downloading jupyterlab-4.5.7-py3-none-any.whl.metadata (16 kB)
Requirement already satisfied: six>=1.5 in .\anaconda3\envs\py310\lib\site-packages (from python-dateutil>=2.8.2->pandas) (1.17.0)
Collecting comm>=0.1.1 (from ipykernel->jupyter)
Downloading comm-0.2.3-py3-none-any.whl.metadata (3.7 kB)
Collecting debugpy>=1.6.5 (from ipykernel->jupyter)
Downloading debugpy-1.8.20-cp310-cp310-win_amd64.whl.metadata (1.5 kB)
Collecting ipython>=7.23.1 (from ipykernel->jupyter)
Downloading ipython-8.39.0-py3-none-any.whl.metadata (5.1 kB)
Collecting jupyter-client>=8.8.0 (from ipykernel->jupyter)
Downloading jupyter_client-8.8.0-py3-none-any.whl.metadata (8.4 kB)
Collecting jupyter-core!=6.0.*,>=5.1 (from ipykernel->jupyter)
Downloading jupyter_core-5.9.1-py3-none-any.whl.metadata (1.5 kB)
Collecting matplotlib-inline>=0.1 (from ipykernel->jupyter)
Downloading matplotlib_inline-0.2.2-py3-none-any.whl.metadata (2.4 kB)
Collecting nest-asyncio>=1.4 (from ipykernel->jupyter)
Downloading nest_asyncio-1.6.0-py3-none-any.whl.metadata (2.8 kB)
Collecting psutil>=5.7 (from ipykernel->jupyter)
Downloading psutil-7.2.2-cp37-abi3-win_amd64.whl.metadata (22 kB)
Collecting pyzmq>=25 (from ipykernel->jupyter)
Downloading pyzmq-27.1.0-cp310-cp310-win_amd64.whl.metadata (6.0 kB)
Collecting tornado>=6.4.1 (from ipykernel->jupyter)
Downloading tornado-6.5.5-cp39-abi3-win_amd64.whl.metadata (2.9 kB)
Collecting traitlets>=5.4.0 (from ipykernel->jupyter)
Downloading traitlets-5.15.0-py3-none-any.whl.metadata (10 kB)
Collecting colorama (from ipython>=7.23.1->ipykernel->jupyter)
Downloading colorama-0.4.6-py2.py3-none-any.whl.metadata (17 kB)
Collecting decorator (from ipython>=7.23.1->ipykernel->jupyter)
Downloading decorator-5.2.1-py3-none-any.whl.metadata (3.9 kB)
Collecting exceptiongroup (from ipython>=7.23.1->ipykernel->jupyter)
Downloading exceptiongroup-1.3.1-py3-none-any.whl.metadata (6.7 kB)
Collecting jedi>=0.16 (from ipython>=7.23.1->ipykernel->jupyter)
Downloading jedi-0.20.0-py2.py3-none-any.whl.metadata (23 kB)
Collecting prompt_toolkit<3.1.0,>=3.0.41 (from ipython>=7.23.1->ipykernel->jupyter)
Downloading prompt_toolkit-3.0.52-py3-none-any.whl.metadata (6.4 kB)
Collecting pygments>=2.4.0 (from ipython>=7.23.1->ipykernel->jupyter)
Downloading pygments-2.20.0-py3-none-any.whl.metadata (2.5 kB)
Collecting stack_data (from ipython>=7.23.1->ipykernel->jupyter)
Downloading stack_data-0.6.3-py3-none-any.whl.metadata (18 kB)
Collecting typing_extensions>=4.6 (from ipython>=7.23.1->ipykernel->jupyter)
Downloading typing_extensions-4.15.0-py3-none-any.whl.metadata (3.3 kB)
Collecting wcwidth (from prompt_toolkit<3.1.0,>=3.0.41->ipython>=7.23.1->ipykernel->jupyter)
Downloading wcwidth-0.7.0-py3-none-any.whl.metadata (36 kB)
Collecting parso<0.9.0,>=0.8.6 (from jedi>=0.16->ipython>=7.23.1->ipykernel->jupyter)
Downloading parso-0.8.7-py2.py3-none-any.whl.metadata (8.2 kB)
Collecting platformdirs>=2.5 (from jupyter-core!=6.0.*,>=5.1->ipykernel->jupyter)
Downloading platformdirs-4.9.6-py3-none-any.whl.metadata (4.7 kB)
Collecting widgetsnbextension~=4.0.14 (from ipywidgets->jupyter)
Downloading widgetsnbextension-4.0.15-py3-none-any.whl.metadata (1.6 kB)
Collecting jupyterlab_widgets~=3.0.15 (from ipywidgets->jupyter)
Downloading jupyterlab_widgets-3.0.16-py3-none-any.whl.metadata (20 kB)
Collecting async-lru>=1.0.0 (from jupyterlab->jupyter)
Downloading async_lru-2.3.0-py3-none-any.whl.metadata (7.6 kB)
Collecting httpx<1,>=0.25.0 (from jupyterlab->jupyter)
Downloading httpx-0.28.1-py3-none-any.whl.metadata (7.1 kB)
Collecting jinja2>=3.0.3 (from jupyterlab->jupyter)
Downloading jinja2-3.1.6-py3-none-any.whl.metadata (2.9 kB)
Collecting jupyter-lsp>=2.0.0 (from jupyterlab->jupyter)
Downloading jupyter_lsp-2.3.1-py3-none-any.whl.metadata (1.8 kB)
Collecting jupyter-server<3,>=2.4.0 (from jupyterlab->jupyter)
Downloading jupyter_server-2.18.2-py3-none-any.whl.metadata (8.5 kB)
Collecting jupyterlab-server<3,>=2.28.0 (from jupyterlab->jupyter)
Downloading jupyterlab_server-2.28.0-py3-none-any.whl.metadata (5.9 kB)
Collecting notebook-shim>=0.2 (from jupyterlab->jupyter)
Downloading notebook_shim-0.2.4-py3-none-any.whl.metadata (4.0 kB)
Requirement already satisfied: setuptools>=41.1.0 in .\anaconda3\envs\py310\lib\site-packages (from jupyterlab->jupyter) (82.0.1)
Collecting tomli>=1.2.2 (from jupyterlab->jupyter)
Downloading tomli-2.4.1-py3-none-any.whl.metadata (10 kB)
Collecting anyio (from httpx<1,>=0.25.0->jupyterlab->jupyter)
Downloading anyio-4.13.0-py3-none-any.whl.metadata (4.5 kB)
Collecting certifi (from httpx<1,>=0.25.0->jupyterlab->jupyter)
Downloading certifi-2026.4.22-py3-none-any.whl.metadata (2.5 kB)
Collecting httpcore==1.* (from httpx<1,>=0.25.0->jupyterlab->jupyter)
Downloading httpcore-1.0.9-py3-none-any.whl.metadata (21 kB)
Collecting idna (from httpx<1,>=0.25.0->jupyterlab->jupyter)
Downloading idna-3.15-py3-none-any.whl.metadata (7.7 kB)
Collecting h11>=0.16 (from httpcore==1.*->httpx<1,>=0.25.0->jupyterlab->jupyter)
Downloading h11-0.16.0-py3-none-any.whl.metadata (8.3 kB)
Collecting argon2-cffi>=21.1 (from jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading argon2_cffi-25.1.0-py3-none-any.whl.metadata (4.1 kB)
Collecting jupyter-events>=0.11.0 (from jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading jupyter_events-0.12.1-py3-none-any.whl.metadata (5.8 kB)
Collecting jupyter-server-terminals>=0.4.4 (from jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading jupyter_server_terminals-0.5.4-py3-none-any.whl.metadata (5.9 kB)
Collecting nbformat>=5.3.0 (from jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading nbformat-5.10.4-py3-none-any.whl.metadata (3.6 kB)
Collecting overrides>=5.0 (from jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading overrides-7.7.0-py3-none-any.whl.metadata (5.8 kB)
Collecting prometheus-client>=0.9 (from jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading prometheus_client-0.25.0-py3-none-any.whl.metadata (2.1 kB)
Collecting pywinpty>=2.0.1 (from jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading pywinpty-3.0.3-cp310-cp310-win_amd64.whl.metadata (5.9 kB)
Collecting send2trash>=1.8.2 (from jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading send2trash-2.1.0-py3-none-any.whl.metadata (4.1 kB)
Collecting terminado>=0.8.3 (from jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading terminado-0.18.1-py3-none-any.whl.metadata (5.8 kB)
Collecting websocket-client>=1.7 (from jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading websocket_client-1.9.0-py3-none-any.whl.metadata (8.3 kB)
Collecting babel>=2.10 (from jupyterlab-server<3,>=2.28.0->jupyterlab->jupyter)
Downloading babel-2.18.0-py3-none-any.whl.metadata (2.2 kB)
Collecting json5>=0.9.0 (from jupyterlab-server<3,>=2.28.0->jupyterlab->jupyter)
Downloading json5-0.14.0-py3-none-any.whl.metadata (36 kB)
Collecting jsonschema>=4.18.0 (from jupyterlab-server<3,>=2.28.0->jupyterlab->jupyter)
Downloading jsonschema-4.26.0-py3-none-any.whl.metadata (7.6 kB)
Collecting requests>=2.31 (from jupyterlab-server<3,>=2.28.0->jupyterlab->jupyter)
Downloading requests-2.34.2-py3-none-any.whl.metadata (4.8 kB)
Collecting argon2-cffi-bindings (from argon2-cffi>=21.1->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading argon2_cffi_bindings-25.1.0-cp39-abi3-win_amd64.whl.metadata (7.5 kB)
Collecting MarkupSafe>=2.0 (from jinja2>=3.0.3->jupyterlab->jupyter)
Downloading markupsafe-3.0.3-cp310-cp310-win_amd64.whl.metadata (2.8 kB)
Collecting attrs>=22.2.0 (from jsonschema>=4.18.0->jupyterlab-server<3,>=2.28.0->jupyterlab->jupyter)
Downloading attrs-26.1.0-py3-none-any.whl.metadata (8.8 kB)
Collecting jsonschema-specifications>=2023.03.6 (from jsonschema>=4.18.0->jupyterlab-server<3,>=2.28.0->jupyterlab->jupyter)
Downloading jsonschema_specifications-2025.9.1-py3-none-any.whl.metadata (2.9 kB)
Collecting referencing>=0.28.4 (from jsonschema>=4.18.0->jupyterlab-server<3,>=2.28.0->jupyterlab->jupyter)
Downloading referencing-0.37.0-py3-none-any.whl.metadata (2.8 kB)
Collecting rpds-py>=0.25.0 (from jsonschema>=4.18.0->jupyterlab-server<3,>=2.28.0->jupyterlab->jupyter)
Downloading rpds_py-0.30.0-cp310-cp310-win_amd64.whl.metadata (4.2 kB)
Collecting python-json-logger>=2.0.4 (from jupyter-events>=0.11.0->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading python_json_logger-4.1.0-py3-none-any.whl.metadata (3.7 kB)
Collecting pyyaml>=5.3 (from jupyter-events>=0.11.0->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading pyyaml-6.0.3-cp310-cp310-win_amd64.whl.metadata (2.4 kB)
Collecting rfc3339-validator (from jupyter-events>=0.11.0->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading rfc3339_validator-0.1.4-py2.py3-none-any.whl.metadata (1.5 kB)
Collecting rfc3986-validator>=0.1.1 (from jupyter-events>=0.11.0->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading rfc3986_validator-0.1.1-py2.py3-none-any.whl.metadata (1.7 kB)
Collecting fqdn (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.11.0->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading fqdn-1.5.1-py3-none-any.whl.metadata (1.4 kB)
Collecting isoduration (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.11.0->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading isoduration-20.11.0-py3-none-any.whl.metadata (5.7 kB)
Collecting jsonpointer>1.13 (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.11.0->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading jsonpointer-3.1.1-py3-none-any.whl.metadata (2.4 kB)
Collecting rfc3987-syntax>=1.1.0 (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.11.0->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading rfc3987_syntax-1.1.0-py3-none-any.whl.metadata (7.7 kB)
Collecting uri-template (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.11.0->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading uri_template-1.3.0-py3-none-any.whl.metadata (8.8 kB)
Collecting webcolors>=24.6.0 (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.11.0->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading webcolors-25.10.0-py3-none-any.whl.metadata (2.2 kB)
Collecting beautifulsoup4 (from nbconvert->jupyter)
Downloading beautifulsoup4-4.14.3-py3-none-any.whl.metadata (3.8 kB)
Collecting bleach!=5.0.0 (from bleach[css]!=5.0.0->nbconvert->jupyter)
Downloading bleach-6.3.0-py3-none-any.whl.metadata (31 kB)
Collecting defusedxml (from nbconvert->jupyter)
Downloading defusedxml-0.7.1-py2.py3-none-any.whl.metadata (32 kB)
Collecting jupyterlab-pygments (from nbconvert->jupyter)
Downloading jupyterlab_pygments-0.3.0-py3-none-any.whl.metadata (4.4 kB)
Collecting mistune<4,>=2.0.3 (from nbconvert->jupyter)
Downloading mistune-3.2.1-py3-none-any.whl.metadata (1.9 kB)
Collecting nbclient>=0.5.0 (from nbconvert->jupyter)
Downloading nbclient-0.10.4-py3-none-any.whl.metadata (8.3 kB)
Collecting pandocfilters>=1.4.1 (from nbconvert->jupyter)
Downloading pandocfilters-1.5.1-py2.py3-none-any.whl.metadata (9.0 kB)
Collecting webencodings (from bleach!=5.0.0->bleach[css]!=5.0.0->nbconvert->jupyter)
Downloading webencodings-0.5.1-py2.py3-none-any.whl.metadata (2.1 kB)
Collecting tinycss2<1.5,>=1.1.0 (from bleach[css]!=5.0.0->nbconvert->jupyter)
Downloading tinycss2-1.4.0-py3-none-any.whl.metadata (3.0 kB)
Collecting fastjsonschema>=2.15 (from nbformat>=5.3.0->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading fastjsonschema-2.21.2-py3-none-any.whl.metadata (2.3 kB)
Collecting charset_normalizer<4,>=2 (from requests>=2.31->jupyterlab-server<3,>=2.28.0->jupyterlab->jupyter)
Downloading charset_normalizer-3.4.7-cp310-cp310-win_amd64.whl.metadata (41 kB)
Collecting urllib3<3,>=1.26 (from requests>=2.31->jupyterlab-server<3,>=2.28.0->jupyterlab->jupyter)
Downloading urllib3-2.7.0-py3-none-any.whl.metadata (6.9 kB)
Collecting lark>=1.2.2 (from rfc3987-syntax>=1.1.0->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.11.0->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading lark-1.3.1-py3-none-any.whl.metadata (1.8 kB)
Collecting cffi>=1.0.1 (from argon2-cffi-bindings->argon2-cffi>=21.1->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading cffi-2.0.0-cp310-cp310-win_amd64.whl.metadata (2.6 kB)
Collecting pycparser (from cffi>=1.0.1->argon2-cffi-bindings->argon2-cffi>=21.1->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading pycparser-3.0-py3-none-any.whl.metadata (8.2 kB)
Collecting soupsieve>=1.6.1 (from beautifulsoup4->nbconvert->jupyter)
Downloading soupsieve-2.8.3-py3-none-any.whl.metadata (4.6 kB)
Collecting arrow>=0.15.0 (from isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.11.0->jupyter-server<3,>=2.4.0->jupyterlab->jupyter)
Downloading arrow-1.4.0-py3-none-any.whl.metadata (7.7 kB)
Collecting executing>=1.2.0 (from stack_data->ipython>=7.23.1->ipykernel->jupyter)
Downloading executing-2.2.1-py2.py3-none-any.whl.metadata (8.9 kB)
Collecting asttokens>=2.1.0 (from stack_data->ipython>=7.23.1->ipykernel->jupyter)
Downloading asttokens-3.0.1-py3-none-any.whl.metadata (4.9 kB)
Collecting pure-eval (from stack_data->ipython>=7.23.1->ipykernel->jupyter)
Downloading pure_eval-0.2.3-py3-none-any.whl.metadata (6.3 kB)
Downloading matplotlib-3.10.9-cp310-cp310-win_amd64.whl (8.2 MB)
━━━ 8.2/8.2 MB 8.5 MB/s 0:00:00
Downloading seaborn-0.13.2-py3-none-any.whl (294 kB)
Downloading scipy-1.15.3-cp310-cp310-win_amd64.whl (41.3 MB)
━━━━ 41.3/41.3 MB 10.4 MB/s 0:00:03
━━━━ 8.9/8.9 MB 7.2 MB/s 0:00:01
Downloading jupyter-1.1.1-py2.py3-none-any.whl (2.7 kB)
Downloading contourpy-1.3.2-cp310-cp310-win_amd64.whl (221 kB)
Downloading cycler-0.12.1-py3-none-any.whl (8.3 kB)
Downloading fonttools-4.63.0-cp310-cp310-win_amd64.whl (1.6 MB)
━━━━ 1.6/1.6 MB 6.0 MB/s 0:00:00
Downloading joblib-1.5.3-py3-none-any.whl (309 kB)
Downloading kiwisolver-1.5.0-cp310-cp310-win_amd64.whl (73 kB)
Downloading pillow-12.2.0-cp310-cp310-win_amd64.whl (7.1 MB)
━━━ 7.1/7.1 MB 5.7 MB/s 0:00:01
Downloading pyparsing-3.3.2-py3-none-any.whl (122 kB)
Downloading threadpoolctl-3.6.0-py3-none-any.whl (18 kB)
Downloading ipykernel-7.2.0-py3-none-any.whl (118 kB)
Downloading comm-0.2.3-py3-none-any.whl (7.3 kB)
Downloading debugpy-1.8.20-cp310-cp310-win_amd64.whl (5.3 MB)
━━━ 5.3/5.3 MB 9.0 MB/s 0:00:00
Downloading ipython-8.39.0-py3-none-any.whl (831 kB)
━━━ 831.8/831.8 kB 2.8 MB/s 0:00:00
Downloading prompt_toolkit-3.0.52-py3-none-any.whl (391 kB)
Downloading jedi-0.20.0-py2.py3-none-any.whl (4.9 MB)
━━━ 4.9/4.9 MB 6.4 MB/s 0:00:00
Downloading parso-0.8.7-py2.py3-none-any.whl (107 kB)
Downloading jupyter_client-8.8.0-py3-none-any.whl (107 kB)
Downloading jupyter_core-5.9.1-py3-none-any.whl (29 kB)
Downloading matplotlib_inline-0.2.2-py3-none-any.whl (9.5 kB)
Downloading nest_asyncio-1.6.0-py3-none-any.whl (5.2 kB)
Downloading platformdirs-4.9.6-py3-none-any.whl (21 kB)
Downloading psutil-7.2.2-cp37-abi3-win_amd64.whl (137 kB)
Downloading pygments-2.20.0-py3-none-any.whl (1.2 MB)
━━━ 1.2/1.2 MB 1.6 MB/s 0:00:00
Downloading pyzmq-27.1.0-cp310-cp310-win_amd64.whl (632 kB)
━━━━ 632.2/632.2 kB 2.6 MB/s 0:00:00
Downloading tornado-6.5.5-cp39-abi3-win_amd64.whl (448 kB)
Downloading traitlets-5.15.0-py3-none-any.whl (85 kB)
Downloading typing_extensions-4.15.0-py3-none-any.whl (44 kB)
Downloading colorama-0.4.6-py2.py3-none-any.whl (25 kB)
Downloading decorator-5.2.1-py3-none-any.whl (9.2 kB)
Downloading exceptiongroup-1.3.1-py3-none-any.whl (16 kB)
Downloading ipywidgets-8.1.8-py3-none-any.whl (139 kB)
Downloading jupyterlab_widgets-3.0.16-py3-none-any.whl (914 kB)
━━━━━ 914.9/914.9 kB 5.2 MB/s 0:00:00
Downloading widgetsnbextension-4.0.15-py3-none-any.whl (2.2 MB)
━━━━ 2.2/2.2 MB 8.3 MB/s 0:00:00
Downloading jupyter_console-6.6.3-py3-none-any.whl (24 kB)
Downloading jupyterlab-4.5.7-py3-none-any.whl (12.5 MB)
━━━━ 12.5/12.5 MB 9.4 MB/s 0:00:01
Downloading httpx-0.28.1-py3-none-any.whl (73 kB)
Downloading httpcore-1.0.9-py3-none-any.whl (78 kB)
Downloading jupyter_server-2.18.2-py3-none-any.whl (391 kB)
Downloading jupyterlab_server-2.28.0-py3-none-any.whl (59 kB)
Downloading anyio-4.13.0-py3-none-any.whl (114 kB)
Downloading argon2_cffi-25.1.0-py3-none-any.whl (14 kB)
Downloading async_lru-2.3.0-py3-none-any.whl (8.4 kB)
Downloading babel-2.18.0-py3-none-any.whl (10.2 MB)
━━━━ 10.2/10.2 MB 11.6 MB/s 0:00:00
Downloading h11-0.16.0-py3-none-any.whl (37 kB)
Downloading idna-3.15-py3-none-any.whl (72 kB)
Downloading jinja2-3.1.6-py3-none-any.whl (134 kB)
Downloading json5-0.14.0-py3-none-any.whl (36 kB)
Downloading jsonschema-4.26.0-py3-none-any.whl (90 kB)
Downloading attrs-26.1.0-py3-none-any.whl (67 kB)
Downloading jsonschema_specifications-2025.9.1-py3-none-any.whl (18 kB)
Downloading jupyter_events-0.12.1-py3-none-any.whl (19 kB)
Downloading jsonpointer-3.1.1-py3-none-any.whl (7.7 kB)
Downloading jupyter_lsp-2.3.1-py3-none-any.whl (77 kB)
Downloading jupyter_server_terminals-0.5.4-py3-none-any.whl (13 kB)
Downloading markupsafe-3.0.3-cp310-cp310-win_amd64.whl (15 kB)
Downloading nbconvert-7.17.1-py3-none-any.whl (261 kB)
Downloading mistune-3.2.1-py3-none-any.whl (53 kB)
Downloading bleach-6.3.0-py3-none-any.whl (164 kB)
Downloading tinycss2-1.4.0-py3-none-any.whl (26 kB)
Downloading nbclient-0.10.4-py3-none-any.whl (25 kB)
Downloading nbformat-5.10.4-py3-none-any.whl (78 kB)
Downloading fastjsonschema-2.21.2-py3-none-any.whl (24 kB)
Downloading notebook_shim-0.2.4-py3-none-any.whl (13 kB)
Downloading overrides-7.7.0-py3-none-any.whl (17 kB)
Downloading pandocfilters-1.5.1-py2.py3-none-any.whl (8.7 kB)
Downloading prometheus_client-0.25.0-py3-none-any.whl (64 kB)
Downloading python_json_logger-4.1.0-py3-none-any.whl (15 kB)
Downloading pywinpty-3.0.3-cp310-cp310-win_amd64.whl (2.1 MB)
━━━━ 2.1/2.1 MB 4.9 MB/s 0:00:00
Downloading pyyaml-6.0.3-cp310-cp310-win_amd64.whl (158 kB)
Downloading referencing-0.37.0-py3-none-any.whl (26 kB)
Downloading requests-2.34.2-py3-none-any.whl (73 kB)
Downloading charset_normalizer-3.4.7-cp310-cp310-win_amd64.whl (159 kB)
Downloading urllib3-2.7.0-py3-none-any.whl (131 kB)
Downloading certifi-2026.4.22-py3-none-any.whl (135 kB)
Downloading rfc3986_validator-0.1.1-py2.py3-none-any.whl (4.2 kB)
Downloading rfc3987_syntax-1.1.0-py3-none-any.whl (8.0 kB)
Downloading lark-1.3.1-py3-none-any.whl (113 kB)
Downloading rpds_py-0.30.0-cp310-cp310-win_amd64.whl (235 kB)
Downloading send2trash-2.1.0-py3-none-any.whl (17 kB)
Downloading terminado-0.18.1-py3-none-any.whl (14 kB)
Downloading tomli-2.4.1-py3-none-any.whl (14 kB)
Downloading webcolors-25.10.0-py3-none-any.whl (14 kB)
Downloading webencodings-0.5.1-py2.py3-none-any.whl (11 kB)
Downloading websocket_client-1.9.0-py3-none-any.whl (82 kB)
Downloading argon2_cffi_bindings-25.1.0-cp39-abi3-win_amd64.whl (31 kB)
Downloading cffi-2.0.0-cp310-cp310-win_amd64.whl (182 kB)
Downloading beautifulsoup4-4.14.3-py3-none-any.whl (107 kB)
Downloading soupsieve-2.8.3-py3-none-any.whl (37 kB)
Downloading defusedxml-0.7.1-py2.py3-none-any.whl (25 kB)
Downloading fqdn-1.5.1-py3-none-any.whl (9.1 kB)
Downloading isoduration-20.11.0-py3-none-any.whl (11 kB)
Downloading arrow-1.4.0-py3-none-any.whl (68 kB)
Downloading jupyterlab_pygments-0.3.0-py3-none-any.whl (15 kB)
Downloading notebook-7.5.6-py3-none-any.whl (14.6 MB)
━━━ 14.6/14.6 MB 11.3 MB/s 0:00:01
Downloading pycparser-3.0-py3-none-any.whl (48 kB)
Downloading rfc3339_validator-0.1.4-py2.py3-none-any.whl (3.5 kB)
Downloading stack_data-0.6.3-py3-none-any.whl (24 kB)
Downloading asttokens-3.0.1-py3-none-any.whl (27 kB)
Downloading executing-2.2.1-py2.py3-none-any.whl (28 kB)
Downloading pure_eval-0.2.3-py3-none-any.whl (11 kB)
Downloading uri_template-1.3.0-py3-none-any.whl (11 kB)
Downloading wcwidth-0.7.0-py3-none-any.whl (110 kB)
Installing collected packages: webencodings, pure-eval, fastjsonschema, widgetsnbextension, websocket-client, webcolors, wcwidth, urllib3, uri-template, typing_extensions, traitlets, tornado, tomli, tinycss2, threadpoolctl, soupsieve, send2trash, scipy, rpds-py, rfc3986-validator, rfc3339-validator, pyzmq, pyyaml, pywinpty, python-json-logger, pyparsing, pygments, pycparser, psutil, prometheus-client, platformdirs, pillow, parso, pandocfilters, overrides, nest-asyncio, MarkupSafe, lark, kiwisolver, jupyterlab_widgets, jupyterlab-pygments, jsonpointer, json5, joblib, idna, h11, fqdn, fonttools, executing, defusedxml, decorator, debugpy, cycler, contourpy, comm, colorama, charset_normalizer, certifi, bleach, babel, attrs, asttokens, terminado, stack_data, scikit-learn, rfc3987-syntax, requests, referencing, prompt_toolkit, mistune, matplotlib-inline, matplotlib, jupyter-core, jinja2, jedi, httpcore, exceptiongroup, cffi, beautifulsoup4, async-lru, arrow, seaborn, jupyter-server-terminals, jupyter-client, jsonschema-specifications, isoduration, ipython, argon2-cffi-bindings, anyio, jsonschema, ipywidgets, ipykernel, httpx, argon2-cffi, nbformat, jupyter-console, nbclient, jupyter-events, nbconvert, jupyter-server, notebook-shim, jupyterlab-server, jupyter-lsp, jupyterlab, notebook, jupyter
Successfully installed MarkupSafe-3.0.3 anyio-4.13.0 argon2-cffi-25.1.0 argon2-cffi-bindings-25.1.0 arrow-1.4.0 asttokens-3.0.1 async-lru-2.3.0 attrs-26.1.0 babel-2.18.0 beautifulsoup4-4.14.3 bleach-6.3.0 certifi-2026.4.22 cffi-2.0.0 charset_normalizer-3.4.7 colorama-0.4.6 comm-0.2.3 contourpy-1.3.2 cycler-0.12.1 debugpy-1.8.20 decorator-5.2.1 defusedxml-0.7.1 exceptiongroup-1.3.1 executing-2.2.1 fastjsonschema-2.21.2 fonttools-4.63.0 fqdn-1.5.1 h11-0.16.0 httpcore-1.0.9 httpx-0.28.1 idna-3.15 ipykernel-7.2.0 ipython-8.39.0 ipywidgets-8.1.8 isoduration-20.11.0 jedi-0.20.0 jinja2-3.1.6 joblib-1.5.3 json5-0.14.0 jsonpointer-3.1.1 jsonschema-4.26.0 jsonschema-specifications-2025.9.1 jupyter-1.1.1 jupyter-client-8.8.0 jupyter-console-6.6.3 jupyter-core-5.9.1 jupyter-events-0.12.1 jupyter-lsp-2.3.1 jupyter-server-2.18.2 jupyter-server-terminals-0.5.4 jupyterlab-4.5.7 jupyterlab-pygments-0.3.0 jupyterlab-server-2.28.0 jupyterlab_widgets-3.0.16 kiwisolver-1.5.0 lark-1.3.1 matplotlib-3.10.9 matplotlib-inline-0.2.2 mistune-3.2.1 nbclient-0.10.4 nbconvert-7.17.1 nbformat-5.10.4 nest-asyncio-1.6.0 notebook-7.5.6 notebook-shim-0.2.4 overrides-7.7.0 pandocfilters-1.5.1 parso-0.8.7 pillow-12.2.0 platformdirs-4.9.6 prometheus-client-0.25.0 prompt_toolkit-3.0.52 psutil-7.2.2 pure-eval-0.2.3 pycparser-3.0 pygments-2.20.0 pyparsing-3.3.2 python-json-logger-4.1.0 pywinpty-3.0.3 pyyaml-6.0.3 pyzmq-27.1.0 referencing-0.37.0 requests-2.34.2 rfc3339-validator-0.1.4 rfc3986-validator-0.1.1 rfc3987-syntax-1.1.0 rpds-py-0.30.0 scikit-learn-1.7.2 scipy-1.15.3 seaborn-0.13.2 send2trash-2.1.0 soupsieve-2.8.3 stack_data-0.6.3 terminado-0.18.1 threadpoolctl-3.6.0 tinycss2-1.4.0 tomli-2.4.1 tornado-6.5.5 traitlets-5.15.0 typing_extensions-4.15.0 uri-template-1.3.0 urllib3-2.7.0 wcwidth-0.7.0 webcolors-25.10.0 webencodings-0.5.1 websocket-client-1.9.0 widgetsnbextension-4.0.15
(py310) PS C:\Users\xxxxx>