官网:https://ipython.org/
Microsoft Windows [版本 10.0.20348.2527]
(c) Microsoft Corporation。保留所有权利。C:\Users\Administrator>pipUsage:pip <command> [options]Commands:install Install packages.download Download packages.uninstall Uninstall packages.freeze Output installed packages in requirements format.list List installed packages.show Show information about installed packages.check Verify installed packages have compatible dependencies.config Manage local and global configuration.search Search PyPI for packages.cache Inspect and manage pip's wheel cache.wheel Build wheels from your requirements.hash Compute hashes of package archives.completion A helper command used for command completion.debug Show information useful for debugging.help Show help for commands.General Options:-h, --help Show help.--isolated Run pip in an isolated mode, ignoring environment variables and user configuration.-v, --verbose Give more output. Option is additive, and can be used up to 3 times.-V, --version Show version and exit.-q, --quiet Give less output. Option is additive, and can be used up to 3 times (corresponding toWARNING, ERROR, and CRITICAL logging levels).--log <path> Path to a verbose appending log.--no-input Disable prompting for input.--proxy <proxy> Specify a proxy in the form [user:passwd@]proxy.server:port.--retries <retries> Maximum number of retries each connection should attempt (default 5 times).--timeout <sec> Set the socket timeout (default 15 seconds).--exists-action <action> Default action when a path already exists: (s)witch, (i)gnore, (w)ipe, (b)ackup,(a)bort.--trusted-host <hostname> Mark this host or host:port pair as trusted, even though it does not have valid or anyHTTPS.--cert <path> Path to alternate CA bundle.--client-cert <path> Path to SSL client certificate, a single file containing the private key and thecertificate in PEM format.--cache-dir <dir> Store the cache data in <dir>.--no-cache-dir Disable the cache.--disable-pip-version-checkDon't periodically check PyPI to determine whether a new version of pip is available fordownload. Implied with --no-index.--no-color Suppress colored output--no-python-version-warningSilence deprecation warnings for upcoming unsupported Pythons.--use-feature <feature> Enable new functionality, that may be backward incompatible.--use-deprecated <feature> Enable deprecated functionality, that will be removed in the future.C:\Users\Administrator>pip install ipython
Collecting ipythonDownloading ipython-8.12.3-py3-none-any.whl (798 kB)|████████████████████████████████| 798 kB 297 kB/s
Collecting colorama; sys_platform == "win32"Downloading colorama-0.4.6-py2.py3-none-any.whl (25 kB)
Collecting traitlets>=5Downloading traitlets-5.14.3-py3-none-any.whl (85 kB)|████████████████████████████████| 85 kB 3.0 MB/s
Collecting typing-extensions; python_version < "3.10"Downloading typing_extensions-4.12.2-py3-none-any.whl (37 kB)
Collecting pickleshareDownloading pickleshare-0.7.5-py2.py3-none-any.whl (6.9 kB)
Collecting decoratorDownloading decorator-5.1.1-py3-none-any.whl (9.1 kB)
Collecting pygments>=2.4.0Downloading pygments-2.19.1-py3-none-any.whl (1.2 MB)|████████████████████████████████| 1.2 MB 2.2 MB/s
Collecting backcallDownloading backcall-0.2.0-py2.py3-none-any.whl (11 kB)
Collecting jedi>=0.16Downloading jedi-0.19.2-py2.py3-none-any.whl (1.6 MB)|████████████████████████████████| 1.6 MB 6.4 MB/s
Collecting matplotlib-inlineDownloading matplotlib_inline-0.1.7-py3-none-any.whl (9.9 kB)
Collecting stack-dataDownloading stack_data-0.6.3-py3-none-any.whl (24 kB)
Collecting prompt-toolkit!=3.0.37,<3.1.0,>=3.0.30Downloading prompt_toolkit-3.0.50-py3-none-any.whl (387 kB)|████████████████████████████████| 387 kB 2.2 MB/s
Collecting parso<0.9.0,>=0.8.4Downloading parso-0.8.4-py2.py3-none-any.whl (103 kB)|████████████████████████████████| 103 kB 3.3 MB/s
Collecting asttokens>=2.1.0Downloading asttokens-3.0.0-py3-none-any.whl (26 kB)
Collecting pure-evalDownloading pure_eval-0.2.3-py3-none-any.whl (11 kB)
Collecting executing>=1.2.0Downloading executing-2.2.0-py2.py3-none-any.whl (26 kB)
Collecting wcwidthDownloading wcwidth-0.2.13-py2.py3-none-any.whl (34 kB)
Installing collected packages: colorama, traitlets, typing-extensions, pickleshare, decorator, pygments, backcall, parso, jedi, matplotlib-inline, asttokens, pure-eval, executing, stack-data, wcwidth, prompt-toolkit, ipython
Successfully installed asttokens-3.0.0 backcall-0.2.0 colorama-0.4.6 decorator-5.1.1 executing-2.2.0 ipython-8.12.3 jedi-0.19.2 matplotlib-inline-0.1.7 parso-0.8.4 pickleshare-0.7.5 prompt-toolkit-3.0.50 pure-eval-0.2.3 pygments-2.19.1 stack-data-0.6.3 traitlets-5.14.3 typing-extensions-4.12.2 wcwidth-0.2.13
WARNING: You are using pip version 20.2.3; however, version 25.0 is available.
You should consider upgrading via the 'c:\users\administrator\appdata\local\programs\python\python38\python.exe -m pip install --upgrade pip' command.C:\Users\Administrator>ipython
Python 3.8.7 (tags/v3.8.7:6503f05, Dec 21 2020, 17:59:51) [MSC v.1928 64 bit (AMD64)]
Type 'copyright', 'credits' or 'license' for more information
IPython 8.12.3 -- An enhanced Interactive Python. Type '?' for help.In [1]:
ps:
1.升级pip命令python -m pip install --upgrade pip