터미널에 ipython이 설치되었음에도 불구하고 설치되지 않았다고 표시됩니다.

터미널에 ipython이 설치되었음에도 불구하고 설치되지 않았다고 표시됩니다.

ipython를 사용하여 설치했습니다 python-pip. 추적 내용은 다음과 같습니다.

user@MY-PC:~$ sudo pip install ipython
[sudo] password for user: 
Downloading/unpacking ipython
  Downloading ipython-2.3.0-py27-none-any.whl (2.8MB): 2.8MB downloaded
Installing collected packages: ipython
Successfully installed ipython
Cleaning up...

dpkg -s그러나 버전을 확인하기 위해 및 명령을 실행했을 때 dpkg -l터미널은 다음과 같은 출력을 제공했습니다.

user@MY-PC:~$ dpkg -s ipython | grep Version
dpkg-query: package 'ipython' is not installed and no information is available
Use dpkg --info (= dpkg-deb --info) to examine archive files,
and dpkg --contents (= dpkg-deb --contents) to list their contents.

user@MY-PC:~$ dpkg -l ipython
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name           Version      Architecture Description
+++-==============-============-============-=================================
un  ipython        <none>       <none>       (no description available)

여기서 무엇이 잘못되었으며 설치를 확인 ipython하고 해당 버전을 확인하려면 어떻게 해야 합니까?

답변1

노력하다 sudo apt-get install ipython. 나는 pip 명령이 Python 자체(모듈 설치 등)를 위한 것이지 시스템 프로그램 설치를 위한 것이 아니라 추측일 뿐이라고 생각합니다.

어쩌면 시도해 볼 수도 있습니다

python ipython

아니면 python그때 import ipython또는ipython

답변2

소스 패키지로 설치했으며 목표는 코드에서 라이브러리로 사용하는 것입니다.

이를 확인하려면 python터미널에 입력하여 셸을 열고 가져오기를 시도해 보세요.

import ipython

오류가 발생하지 않으면 모든 것이 정상이라는 의미입니다. 예:

>>> import os # This package exist and it's installed!
>>> os
<module 'os' from '/usr/lib/python2.7/os.pyc'>
>>> import bottle # This package exist but it's not installed!
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named bottle
>>> bottle
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'bottle' is not defined

귀하가 지정한 패키지가 다음을 제공하는 경우가 있습니다.대화형 Python 쉘 터미널 기반(읽다선적 서류 비치ipython) 다른 명령으로 실행되는 터미널에서 사용할 수 있습니다 .

이는 매우 특정한 경우이며 모든 Python 패키지에 적용되지는 않습니다.

추가 정보apt-get 설치와 pip 설치 비교

관련 정보