Не могу импортировать любые пакеты в блокнот jupyter после обновления Python до 3.7 - PullRequest
0 голосов
/ 08 октября 2018

После обновления python до 3.7 я столкнулся с таким количеством проблем с jupyter notebook 1) Не могу запустить python в powershell или cmd, потому что я получаю эту ошибку

   python : The term 'python' is not recognized as the name of a cmdlet, 
function, script
file, or operable program. Check the spelling of the name, or if a path was 
included,
verify that the path is correct and try again.
At line:1 char:1
+ python
+ ~~~~~~
    + CategoryInfo          : ObjectNotFound: (python:String) [], 
CommandNotFoundException

    + FullyQualifiedErrorId : CommandNotFoundException

2) Не могу импортировать большинство пакетов, яполучаю ошибку импорта: загрузка DLL не удалась, я попытался "из scipy.stats.stats import pearsonr" и получил эту ошибку:

ImportError                               Traceback (most recent call last)
<ipython-input-5-0ebd78c1f4f1> in <module>()
----> 1 from scipy.stats.stats import pearsonr

~\Anaconda3\lib\site-packages\scipy\stats\__init__.py in <module>()
    343 from __future__ import division, print_function, absolute_import
    344 
--> 345 from .stats import *
    346 from .distributions import *
    347 from .morestats import *

~\Anaconda3\lib\site-packages\scipy\stats\stats.py in <module>()
    167 from scipy._lib.six import callable, string_types
    168 from scipy._lib._version import NumpyVersion
--> 169 import scipy.special as special
    170 import scipy.linalg as linalg
    171 from . import distributions

~\Anaconda3\lib\site-packages\scipy\special\__init__.py in <module>()
    638 from .sf_error import SpecialFunctionWarning, SpecialFunctionError
    639 
--> 640 from ._ufuncs import *
    641 
    642 from .basic import *

ImportError: DLL load failed: The specified module could not be found.
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...