CenOS7上のpython2に、pandas をインストールしようとすると、下記のエラーになりました。
$ pip -V pip 10.0.1 from /usr/lib/python2.7/site-packages/pip (python 2.7) $ sudo pip install pandas (略) Installing collected packages: numpy, python-dateutil, pandas Found existing installation: numpy 1.7.1 Cannot uninstall 'numpy'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.
numpy を探すと1.7.1ではなくて1.14.3と表示されました。
$ pip freeze |grep numpy Could not parse requirement: -ipap11helper numpy==1.14.3
他のマシンでは一度pipをアンインストールして、再インストールすると解決しました。
今回もその方法で回避することも考えましたが、せっかくの機会なので、
理解してみたいと思い質問しました。
pipをインストールする際、
pip3->pipの順でインストールしました。
この順序が逆だと、pipはどちらもpython3が動いてしましました。
そのためこのマシンでは、pip3->pipの順としました。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。