Ошибка загрузки DLL при загрузке numpy -mkl - PullRequest
0 голосов
/ 16 июня 2020

Я хотел установить cvxopt Я не нашел канонического способа сделать это, поэтому я последовал этому ответу , чтобы установить «Numpy + mkl». Я попытался сделать это в PyCharm, но это дало мне следующую ошибку:

ERROR: Could not find a version that satisfies the requirement numpy-mkl (from versions: none)
ERROR: No matching distribution found for numpy-mkl
WARNING: You are using pip version 20.0.2; however, version 20.1.1 is available.
You should consider upgrading via the 'C:\Users\antoi\AppData\Local\Microsoft\WindowsApps\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\python.exe -m pip install --upgrade pip' command.

Поэтому я попытался адаптировать ответ для Python2 .7 следующим образом:

  • загрузите правильный файл whl с этого веб-сайта (выберите правильную версию Python и файл 32/64, я взял первый, так как у меня 64-битная операционная система)
  • откройте терминал python в PyCharm
  • go в каталог, в который вы загрузили файл «whl», с инструкциями «cd».

Я проверил, что у меня 64-битная версия Python:

(mod_env) C:\Users\antoi\Documents\Programming\ModeloMarkowitz>python3
Python 3.7.7 (tags/v3.7.7:d7c567b08f, Mar 10 2020, 11:52:54) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>

Когда я впервые пытаюсь загрузить библиотеку, терминал сообщает мне, что мне нужно добавить что-то в путь: 'C:\Users\antoi\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\Scripts'

Затем я загружаю его:

(mod_env) C:\Users\antoi\Documents\Programming\ModeloMarkowitz>pip3 install "numpy-1.18.5+mkl-cp37-cp37m-win_amd64.whl"
Requirement already satisfied: numpy==1.18.5+mkl from file:///C:/Users/antoi/Documents/Programming/ModeloMarkowitz/numpy-1.18.5%2Bmkl-cp37-cp37m-win_amd64.whl in c:\users\antoi\appdata\local\packages\pythonsoftwar
efoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (1.18.5+mkl)
WARNING: You are using pip version 20.0.2; however, version 20.1.1 is available.
You should consider upgrading via the 'C:\Users\antoi\AppData\Local\Microsoft\WindowsApps\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\python.exe -m pip install --upgrade pip' command.

После загрузки numpy -mkl и добавления чего-то в PATH я запускаю скрипт и получаю следующую ошибку:

C:\Users\antoi\AppData\Local\Microsoft\WindowsApps\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\python3.7.exe C:/Users/antoi/Documents/Programming/ModeloMarkowitz/modeloMarkowitz.py
Traceback (most recent call last):
  File "C:\Users\antoi\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\numpy\core\__init__.py", line 24, in <module>
    from . import multiarray
  File "C:\Users\antoi\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\numpy\core\multiarray.py", line 14, in <module>
    from . import overrides
  File "C:\Users\antoi\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\numpy\core\overrides.py", line 7, in <module>
    from numpy.core._multiarray_umath import (
ImportError: DLL load failed: The specified module could not be found.

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "C:/Users/antoi/Documents/Programming/ModeloMarkowitz/modeloMarkowitz.py", line 1, in <module>
    import numpy as np
  File "C:\Users\antoi\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\numpy\__init__.py", line 142, in <module>
    from . import core
  File "C:\Users\antoi\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\numpy\core\__init__.py", line 50, in <module>
    raise ImportError(msg)
ImportError: 

IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!

Importing the numpy C-extensions failed. This error can happen for
many reasons, often due to issues with your setup or how NumPy was
installed.

We have compiled some common reasons and troubleshooting tips at:

    https://numpy.org/devdocs/user/troubleshooting-importerror.html

Please note and check the following:

  * The Python version is: Python3.7 from "C:\Users\antoi\AppData\Local\Microsoft\WindowsApps\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\python.exe"
  * The NumPy version is: "1.18.5"

and make sure that they are the versions you expect.
Please carefully study the documentation linked above for further help.

Original error was: DLL load failed: The specified module could not be found.


Process finished with exit code 1

Вот мои PATH и PYHTONPATH:

>>> import os
>>> print("PYTHONPATH:", os.environ.get('PYTHONPATH'))
PYTHONPATH: None
>>> print("PATH:", os.environ.get('PATH'))
PATH: C:\Users\antoi\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\numpy\DLLs;C:\Users\antoi\.conda\envs\mod_env;C:\Users\antoi\.conda\en
vs\mod_env\Library\mingw-w64\bin;C:\Users\antoi\.conda\envs\mod_env\Library\usr\bin;C:\Users\antoi\.conda\envs\mod_env\Library\bin;C:\Users\antoi\.conda\envs\mod_env\Scripts;C:\Users\antoi\.conda\envs\mod_env\bin;
C:\ProgramData\Anaconda3\condabin;C:\Programs\geckodriver.exe;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.2\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.2\libnvvp;C:\Program Files (x86)\Gr
aphviz2.38\bin;C:\Python27;C:\Python27\Scripts;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\iCLS;C:\Program Files\Intel\Intel(R) Management Engine Components\iCLS;C:\Windows\system32;C:\Windo
ws;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management
Engine Components\DAL;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Intel\WiFi\bin;C:\Program Files\Common Files\Intel\WirelessCommon;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wb
em;C:\WINDOWS\System32\WindowsPowerShell\v1.0;C:\WINDOWS\System32\OpenSSH;C:\Program Files\Git\cmd;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\110\Tools\Binn;C:\Program Files (x86)\Microsoft SQL Se
rver\150\DTS\Binn;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn;C:\Program Files (x86)\Microsoft SQL Server\150\Tools\Binn;C:\Program Files\Microsoft SQL Server\150\Tools\Binn;C:\Program Fil
es\Microsoft SQL Server\150\DTS\Binn;C:\sqlite3;C:\Program Files (x86);C:\Program Files\nodejs;C:\ProgramData\chocolatey\bin;C:\ProgramData\Anaconda3\Library\bin;C:\ProgramData\Anaconda3\Scripts;C:\Users\RajaRama\
Anaconda3\Library;C:\Program Files (x86)\Yarn\bin;C:\Program Files\NVIDIA Corporation\Nsight Compute 2019.5.0;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\Program Files (x86)\Google\Cloud SDK\google-cloud
-sdk\bin;C:\Users\antoi\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\Scripts;C:\Programs\geckodriver.exe;C:\Users\antoi\AppData\Local\Microsoft\Window
sApps;C:\Program Files\nodejs\node_modules\npm\bin;C:\Users\antoi\AppData\Roaming\npm;C:\Program Files\JetBrains\PyCharm Community Edition 2019.3.3\bin;.;C:\Users\antoi\AppData\Local\Yarn\bin;.
>>>

Обновление

Думаю, это связано с анакондой. Действительно, я пытался установить библиотеки в блокнот jupyter, который запускался с терминала Anaconda. Несмотря на правильную установку, я не смог использовать библиотеку. Действительно, с:

!pip3 install pandas-profiling[notebook]
import pandas_profiling as pp

я получил:

Requirement already satisfied: pandas-profiling[notebook] in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (2.8.0)
Requirement already satisfied: confuse>=1.0.0 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from pandas-profiling[notebook]) (1.3.0)
Requirement already satisfied: requests>=2.23.0 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from pandas-profiling[notebook]) (2.24.0)
Requirement already satisfied: joblib in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from pandas-profiling[notebook]) (0.15.1)
Requirement already satisfied: tqdm>=4.43.0 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from pandas-profiling[notebook]) (4.47.0)
Requirement already satisfied: jinja2>=2.11.1 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from pandas-profiling[notebook]) (2.11.1)
Requirement already satisfied: ipywidgets>=7.5.1 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from pandas-profiling[notebook]) (7.5.1)
Requirement already satisfied: scipy>=1.4.1 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from pandas-profiling[notebook]) (1.4.1)
Requirement already satisfied: visions[type_image_path]==0.4.4 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from pandas-profiling[notebook]) (0.4.4)
Requirement already satisfied: numpy>=1.16.0 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from pandas-profiling[notebook]) (1.18.5)
Requirement already satisfied: missingno>=0.4.2 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from pandas-profiling[notebook]) (0.4.2)
Requirement already satisfied: htmlmin>=0.1.12 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from pandas-profiling[notebook]) (0.1.12)
Requirement already satisfied: pandas!=1.0.0,!=1.0.1,!=1.0.2,>=0.25.3 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from pandas-profiling[notebook]) (1.0.3)
Requirement already satisfied: phik>=0.9.10 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from pandas-profiling[notebook]) (0.10.0)
Requirement already satisfied: tangled-up-in-unicode>=0.0.6 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from pandas-profiling[notebook]) (0.0.6)
Requirement already satisfied: astropy>=4.0 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from pandas-profiling[notebook]) (4.0.1.post1)
Requirement already satisfied: matplotlib>=3.2.0 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from pandas-profiling[notebook]) (3.2.2)
Requirement already satisfied: jupyter-core>=4.6.3; extra == "notebook" in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from pandas-profiling[notebook]) (4.6.3)
Requirement already satisfied: jupyter-client>=6.0.0; extra == "notebook" in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from pandas-profiling[notebook]) (6.1.5)
Requirement already satisfied: pyyaml in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from confuse>=1.0.0->pandas-profiling[notebook]) (5.3.1)
Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from requests>=2.23.0->pandas-profiling[notebook]) (1.22)
Requirement already satisfied: idna<3,>=2.5 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from requests>=2.23.0->pandas-profiling[notebook]) (2.6)
Requirement already satisfied: chardet<4,>=3.0.2 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from requests>=2.23.0->pandas-profiling[notebook]) (3.0.4)
Requirement already satisfied: certifi>=2017.4.17 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from requests>=2.23.0->pandas-profiling[notebook]) (2019.11.28)
Requirement already satisfied: MarkupSafe>=0.23 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from jinja2>=2.11.1->pandas-profiling[notebook]) (1.1.1)
Requirement already satisfied: traitlets>=4.3.1 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from ipywidgets>=7.5.1->pandas-profiling[notebook]) (4.3.3)
Requirement already satisfied: widgetsnbextension~=3.5.0 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from ipywidgets>=7.5.1->pandas-profiling[notebook]) (3.5.1)
Requirement already satisfied: ipython>=4.0.0; python_version >= "3.3" in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from ipywidgets>=7.5.1->pandas-profiling[notebook]) (7.16.1)
Requirement already satisfied: ipykernel>=4.5.1 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from ipywidgets>=7.5.1->pandas-profiling[notebook]) (5.3.0)
Requirement already satisfied: nbformat>=4.2.0 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from ipywidgets>=7.5.1->pandas-profiling[notebook]) (5.0.7)
Requirement already satisfied: attrs>=19.3.0 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from visions[type_image_path]==0.4.4->pandas-profiling[notebook]) (19.3.0)
Requirement already satisfied: networkx>=2.4 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from visions[type_image_path]==0.4.4->pandas-profiling[notebook]) (2.4)
Requirement already satisfied: Pillow; extra == "type_image_path" in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from visions[type_image_path]==0.4.4->pandas-profiling[notebook]) (7.1.0)
Requirement already satisfied: imagehash; extra == "type_image_path" in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from visions[type_image_path]==0.4.4->pandas-profiling[notebook]) (4.1.0)
Requirement already satisfied: seaborn in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from missingno>=0.4.2->pandas-profiling[notebook]) (0.10.1)
Requirement already satisfied: python-dateutil>=2.6.1 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from pandas!=1.0.0,!=1.0.1,!=1.0.2,>=0.25.3->pandas-profiling[notebook]) (2.8.1)
Requirement already satisfied: pytz>=2017.2 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from pandas!=1.0.0,!=1.0.1,!=1.0.2,>=0.25.3->pandas-profiling[notebook]) (2019.3)
Requirement already satisfied: numba>=0.38.1 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from phik>=0.9.10->pandas-profiling[notebook]) (0.50.1)
Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from matplotlib>=3.2.0->pandas-profiling[notebook]) (2.4.6)
Requirement already satisfied: kiwisolver>=1.0.1 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from matplotlib>=3.2.0->pandas-profiling[notebook]) (1.1.0)
Requirement already satisfied: cycler>=0.10 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from matplotlib>=3.2.0->pandas-profiling[notebook]) (0.10.0)
Requirement already satisfied: pywin32>=1.0; sys_platform == "win32" in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from jupyter-core>=4.6.3; extra == "notebook"->pandas-profiling[notebook]) (228)
Requirement already satisfied: pyzmq>=13 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from jupyter-client>=6.0.0; extra == "notebook"->pandas-profiling[notebook]) (19.0.1)
Requirement already satisfied: tornado>=4.1 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from jupyter-client>=6.0.0; extra == "notebook"->pandas-profiling[notebook]) (6.0.4)
Requirement already satisfied: ipython-genutils in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from traitlets>=4.3.1->ipywidgets>=7.5.1->pandas-profiling[notebook]) (0.2.0)
Requirement already satisfied: decorator in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from traitlets>=4.3.1->ipywidgets>=7.5.1->pandas-profiling[notebook]) (4.4.2)
Requirement already satisfied: six in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from traitlets>=4.3.1->ipywidgets>=7.5.1->pandas-profiling[notebook]) (1.14.0)
Requirement already satisfied: notebook>=4.4.1 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from widgetsnbextension~=3.5.0->ipywidgets>=7.5.1->pandas-profiling[notebook]) (6.0.3)
Requirement already satisfied: prompt-toolkit!=3.0.0,!=3.0.1,<3.1.0,>=2.0.0 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from ipython>=4.0.0; python_version >= "3.3"->ipywidgets>=7.5.1->pandas-profiling[notebook]) (2.0.10)
Requirement already satisfied: colorama; sys_platform == "win32" in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from ipython>=4.0.0; python_version >= "3.3"->ipywidgets>=7.5.1->pandas-profiling[notebook]) (0.4.3)
Requirement already satisfied: setuptools>=18.5 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from ipython>=4.0.0; python_version >= "3.3"->ipywidgets>=7.5.1->pandas-profiling[notebook]) (46.1.3)
Requirement already satisfied: pygments in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from ipython>=4.0.0; python_version >= "3.3"->ipywidgets>=7.5.1->pandas-profiling[notebook]) (2.6.1)
Requirement already satisfied: backcall in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from ipython>=4.0.0; python_version >= "3.3"->ipywidgets>=7.5.1->pandas-profiling[notebook]) (0.2.0)
Requirement already satisfied: jedi>=0.10 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from ipython>=4.0.0; python_version >= "3.3"->ipywidgets>=7.5.1->pandas-profiling[notebook]) (0.17.1)
Requirement already satisfied: pickleshare in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from ipython>=4.0.0; python_version >= "3.3"->ipywidgets>=7.5.1->pandas-profiling[notebook]) (0.7.5)
Requirement already satisfied: jsonschema!=2.5.0,>=2.4 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from nbformat>=4.2.0->ipywidgets>=7.5.1->pandas-profiling[notebook]) (3.2.0)
Requirement already satisfied: PyWavelets in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from imagehash; extra == "type_image_path"->visions[type_image_path]==0.4.4->pandas-profiling[notebook]) (1.1.1)
Requirement already satisfied: llvmlite<0.34,>=0.33.0.dev0 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from numba>=0.38.1->phik>=0.9.10->pandas-profiling[notebook]) (0.33.0)
Requirement already satisfied: nbconvert in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.5.1->pandas-profiling[notebook]) (5.6.1)
Requirement already satisfied: prometheus-client in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.5.1->pandas-profiling[notebook]) (0.8.0)
Requirement already satisfied: terminado>=0.8.1 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.5.1->pandas-profiling[notebook]) (0.8.3)
Requirement already satisfied: Send2Trash in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.5.1->pandas-profiling[notebook]) (1.5.0)
Requirement already satisfied: wcwidth in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from prompt-toolkit!=3.0.0,!=3.0.1,<3.1.0,>=2.0.0->ipython>=4.0.0; python_version >= "3.3"->ipywidgets>=7.5.1->pandas-profiling[notebook]) (0.1.9)
Requirement already satisfied: parso<0.8.0,>=0.7.0 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from jedi>=0.10->ipython>=4.0.0; python_version >= "3.3"->ipywidgets>=7.5.1->pandas-profiling[notebook]) (0.7.0)
Requirement already satisfied: pyrsistent>=0.14.0 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from jsonschema!=2.5.0,>=2.4->nbformat>=4.2.0->ipywidgets>=7.5.1->pandas-profiling[notebook]) (0.16.0)
Requirement already satisfied: importlib-metadata; python_version < "3.8" in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from jsonschema!=2.5.0,>=2.4->nbformat>=4.2.0->ipywidgets>=7.5.1->pandas-profiling[notebook]) (1.6.0)
Requirement already satisfied: entrypoints>=0.2.2 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.5.1->pandas-profiling[notebook]) (0.3)
Requirement already satisfied: pandocfilters>=1.4.1 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.5.1->pandas-profiling[notebook]) (1.4.2)
Requirement already satisfied: mistune<2,>=0.8.1 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.5.1->pandas-profiling[notebook]) (0.8.4)
Requirement already satisfied: testpath in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.5.1->pandas-profiling[notebook]) (0.4.4)
Requirement already satisfied: defusedxml in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.5.1->pandas-profiling[notebook]) (0.6.0)
Requirement already satisfied: bleach in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.5.1->pandas-profiling[notebook]) (3.1.5)
Requirement already satisfied: pywinpty>=0.5; os_name == "nt" in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from terminado>=0.8.1->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.5.1->pandas-profiling[notebook]) (0.5.7)
Requirement already satisfied: zipp>=0.5 in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from importlib-metadata; python_version < "3.8"->jsonschema!=2.5.0,>=2.4->nbformat>=4.2.0->ipywidgets>=7.5.1->pandas-profiling[notebook]) (3.1.0)
Requirement already satisfied: packaging in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from bleach->nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.5.1->pandas-profiling[notebook]) (20.3)
Requirement already satisfied: webencodings in c:\users\antoi\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from bleach->nbconvert->notebook>=4.4.1->widgetsnbextension~=3.5.0->ipywidgets>=7.5.1->pandas-profiling[notebook]) (0.5.1)

WARNING: You are using pip version 20.0.2; however, version 20.1.1 is available.
You should consider upgrading via the 'C:\Users\antoi\AppData\Local\Microsoft\WindowsApps\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\python.exe -m pip install --upgrade pip' command.

---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
<ipython-input-2-92ac6bedabf5> in <module>
      6 import scipy.stats as stats
      7 get_ipython().system('pip3 install pandas-profiling[notebook]')
----> 8 import pandas_profiling as pp
      9 import matplotlib.pyplot as plt
     10 

ModuleNotFoundError: No module named 'pandas_profiling'
...