web-dev-qa-db-ja.com

scipyをインストールできません-「scipyのsetup.pyインストールの実行」でフリーズします

私が走るとき

Sudo pip install -U scipy

最初にダウンロードされ、次に表示されます

Running setup.py install for scipy

しかし、そこでフリーズします。 pip自体をアップグレードしてみました。うまくいきました。私のピップバージョンは1.5.4です

私が得る唯一のエラーはInsecurePlatforWarningです。完全な出力は次のようになります。

tom@tom-ThinkPad-Edge-E430:~$ Sudo pip install -U scipy
The directory '/home/tom/.cache/pip/http' or its parent directory
is not owned by the current user and the cache has been disabled.
Please check the permissions and owner of that directory. If
executing pip with Sudo, you may want Sudo's -H flag.
The directory '/home/tom/.cache/pip' or its parent directory is not
owned by the current user and caching wheels has been disabled.
check the permissions and owner of that directory. If executing pip with
Sudo, you may want Sudo's -H flag.
Collecting scipy
/usr/local/lib/python2.7/dist-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:90:
InsecurePlatformWarning: A true SSLContext object is not available.
This prevents urllib3 from configuring SSL appropriately and
may cause certain SSL connections to fail. For more information, see
https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
Downloading scipy-0.16.1.tar.gz (12.2MB)
   100% |████████████████████████████████| 12.2MB 32kB/s 
Installing collected packages: scipy
   Running setup.py install for scipy
17
Tom83B

予想以上に長い時間がかかりましたが、数分後に終了しました。問題は解決しました。

54
Tom83B

行う

Sudo apt-get install python-scipy

python2の

または

Sudo apt-get install python3-scipy

バージョンを気にしない場合。 RPI3で数秒以内にインストール

1
Anand C U