LoginSignup
2
0

More than 5 years have passed since last update.

spyderでpipを使うとThe Python package manager (pip) can only be used from outside of IPython.と表示される

Last updated at Posted at 2018-03-22

環境:
MacOS 10.13.2
Spyder 3.2.3
python 3.6

ipConsole
$ pip install --upgrade pip

spyder の内蔵コンソールでpipを使おうとすると下記エラーが出力される。

ipConsole

The Python package manager (pip) can only be used from outside of IPython.
Please reissue the `pip` command in a separate terminal or command prompt.

See the Python documentation for more informations on how to install packages:

    https://docs.python.org/3/installing/

これの暫定的な解決方法は、下記の通り。

ipConsole
$ !pip install --upgrade pip

引用
how to run pip install outside of the IPython shell [duplicate]-stackoverflow

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0