numpyをアップグレードしたい
pipでnumpyのバージョンを調べると1.16.6です。しかし、pythonでnumpyをimportし、バージョンを調べると1.13.3です。これを改善したいです。
発生している問題
######pip version
~> pip show numpy
Name: numpy
Version: 1.16.6
Summary: NumPy is the fundamental package for array computing with Python.
Home-page: https://www.numpy.org
Author: Travis E. Oliphant et al.
Author-email: None
License: BSD
Location: /usr/lib/python2.7/dist-packages
Requires:
Required-by: stsci.tools, astropy, pywcs, tensorflow, tensorflow-tensorboard, tensorboard, scipy, opt-einsum, Keras, Keras-Preprocessing, Keras-Applications, h5py
#####python version
import numpy as np
print np.version
1.13.3
print np.path
['/usr/lib/python2.7/dist-packages/numpy']
試したこと
pip install -U numpy
パスのチェック
補足情報(FW/ツールのバージョンなど)
マシン : debian 18.04
python 2.7.15
回答1件
あなたの回答
tips
プレビュー