# pip_v181 **Repository Path**: linux2014/pip_v181 ## Basic Information - **Project Name**: pip_v181 - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-09-25 - **Last Updated**: 2025-01-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README --- https://github.com/pypa/pip/tree/18.1 https://pip-cn.readthedocs.io/en/latest/index.html --- 错误: ImportError: No module named 'setuptools' 需要先安装setuptools; https://gitee.com/linux2014/setuptools-39.2.0 --- ``` python3.4 setup.py install ``` Processing pip-18.1-py3.4.egg creating /mnt/d/D/linux_install_dir/python_v349/lib/python3.4/site-packages/pip-18.1-py3.4.egg Extracting pip-18.1-py3.4.egg to /mnt/d/D/linux_install_dir/python_v349/lib/python3.4/site-packages Adding pip 18.1 to easy-install.pth file Installing pip script to /mnt/d/D/linux_install_dir/python_v349/bin Installing pip3.4 script to /mnt/d/D/linux_install_dir/python_v349/bin Installing pip3 script to /mnt/d/D/linux_install_dir/python_v349/bin Installed /mnt/d/D/linux_install_dir/python_v349/lib/python3.4/site-packages/pip-18.1-py3.4.egg Processing dependencies for pip==18.1 Finished processing dependencies for pip==18.1 --- ### pip https://www.oschina.net/p/pip?hmsr=aladdin1e1 ip 是一个 Python 包安装与管理工具。 从 PyPI 安装软件包: ``` $ pip install SomePackage [...] Successfully installed SomePackage 安装已经从 PyPI 下载或从其他地方获得的软件包: $ pip install SomePackage-1.0-py2.py3-none-any.whl [...] Successfully installed SomePackage 显示安装了哪些文件: $ pip show --files SomePackage Name: SomePackage Version: 1.0 Location: /my/env/lib/pythonx.x/site-packages Files: ../somepackage/__init__.py [...] 列出哪些软件包已过期: $ pip list --outdated SomePackage (Current: 1.0 Latest: 2.0) 升级软件包: $ pip install --upgrade SomePackage [...] Found existing installation: SomePackage 1.0 Uninstalling SomePackage: Successfully uninstalled SomePackage Running setup.py install for SomePackage Successfully installed SomePackage 卸载软件包: $ pip uninstall SomePackage Uninstalling SomePackage: /my/env/lib/pythonx.x/site-packages/somepackage Proceed (y/n)? y Successfully uninstalled SomePackage ``` --- --- pip === The `PyPA recommended`_ tool for installing Python packages. .. image:: https://img.shields.io/pypi/v/pip.svg :target: https://pypi.org/project/pip/ .. image:: https://img.shields.io/travis/pypa/pip/master.svg?label=travis-ci :target: https://travis-ci.org/pypa/pip .. image:: https://img.shields.io/appveyor/ci/pypa/pip.svg?label=appveyor-ci :target: https://ci.appveyor.com/project/pypa/pip/history .. image:: https://readthedocs.org/projects/pip/badge/?version=latest :target: https://pip.pypa.io/en/latest * `Installation`_ * `Documentation`_ * `Changelog`_ * `GitHub Page`_ * `Issue Tracking`_ * `User mailing list`_ * `Dev mailing list`_ * User IRC: #pypa on Freenode. * Dev IRC: #pypa-dev on Freenode. Code of Conduct --------------- Everyone interacting in the pip project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the `PyPA Code of Conduct`_. .. _PyPA recommended: https://packaging.python.org/en/latest/current/ .. _Installation: https://pip.pypa.io/en/stable/installing.html .. _Documentation: https://pip.pypa.io/en/stable/ .. _Changelog: https://pip.pypa.io/en/stable/news.html .. _GitHub Page: https://github.com/pypa/pip .. _Issue Tracking: https://github.com/pypa/pip/issues .. _User mailing list: https://groups.google.com/forum/#!forum/python-virtualenv .. _Dev mailing list: https://groups.google.com/forum/#!forum/pypa-dev .. _PyPA Code of Conduct: https://www.pypa.io/en/latest/code-of-conduct/