[root@localhost ipython]# ipythonTraceback (most recent call last): File "/usr/local/bin/ipython", line 4, in from IPython import start_ipython File "/usr/local/lib/python3.7/site-packages/IPython/__init__.py", line 54, in from .core.application import Application File "/usr/local/lib/python3.7/site-packages/IPython/core/application.py", line 23, in from traitlets.config.application import Application, catch_config_errorModuleNotFoundError: No module named 'traitlets'
#运行ipython是提示缺少’traitlets’模块; #安装提示一步步通过pip安装缺失模块
[root@localhost ipython]# pip install 'traitlets'Collecting traitlets Downloading https://files.pythonhosted.org/packages/93/d6/abcb22de61d78e2fc3959c964628a5771e47e7cc60d53e9342e21ed6cc9a/traitlets-4.3.2-py2.py3-none-any.whl (74kB) 100% |████████████████████████████████| 81kB 100kB/sRequirement already satisfied (use --upgrade to upgrade): enum34; python_version == "2.7" in /usr/lib/python2.7/site-packages (from traitlets)Requirement already satisfied (use --upgrade to upgrade): six in /usr/lib/python2.7/site-packages (from traitlets)Collecting ipython-genutils (from traitlets) Downloading https://files.pythonhosted.org/packages/fa/bc/9bd3b5c2b4774d5f33b2d544f1460be9df7df2fe42f352135381c347c69a/ipython_genutils-0.2.0-py2.py3-none-any.whlRequirement already satisfied (use --upgrade to upgrade): decorator in /usr/lib/python2.7/site-packages (from traitlets)Installing collected packages: ipython-genutils, traitletsSuccessfully installed ipython-genutils-0.2.0 traitlets-4.3.2You are using pip version 8.1.2, however version 19.0.3 is available.You should consider upgrading via the 'pip install --upgrade pip' command.
[root@localhost pip-9.0.1]# pip install ipython[root@localhost pip-9.0.1]# ipythonipython ipython3 [root@localhost pip-9.0.1]# ipython3/usr/local/lib/python3.6/site-packages/IPython/core/history.py:226: UserWarning: IPython History requires SQLite, your history will not be saved warn("IPython History requires SQLite, your history will not be saved")Python 3.6.1 (default, Jun 26 2017, 09:16:04)Type 'copyright', 'credits' or 'license' for more informationIPython 6.1.0 -- An enhanced Interactive Python. Type '?' for help.In [1]:#ipython安装成功