zoukankan      html  css  js  c++  java
  • mac M1 安装pip2(python2.7)

    %: curl https://bootstrap.pypa.io/pip/2.7/get-pip.py -o get-pip.py
    %: python get-pip.py
    

    得到大致如下内容:

    pc@pcMacBook-Pro Documents % python get-pip.py 
    DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support pip 21.0 will remove support for this functionality.
    Defaulting to user installation because normal site-packages is not writeable
    Looking in indexes: http://pypi.douban.com/simple
    Collecting pip<21.0
      Downloading http://pypi.doubanio.com/packages/27/79/8a850fe3496446ff0d584327ae44e7500daf6764ca1a382d2d02789accf7/pip-20.3.4-py2.py3-none-any.whl (1.5 MB)
         |████████████████████████████████| 1.5 MB 1.6 MB/s 
    Installing collected packages: pip
      WARNING: The scripts pip, pip2 and pip2.7 are installed in '/Users/pc/Library/Python/2.7/bin' which is not on PATH.
      Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
    Successfully installed pip-20.3.4
    pc@deMacBook-Pro Documents % pip   #无反应
    

    然后执行:

    sudo ln -s /Users/<你的路径>/Library/Python/2.7/bin/pip /usr/local/bin/pip
    

    最后测试:

    pip -V
    
  • 相关阅读:
    Java-->实现断点续传(下载)
    Java-->分割文件
    Java-->IO流模拟实现用户登录以及登录信息
    Java-->PrintStream
    Java-->一个只能运行十次的程序
    MySQL之数据类型
    【linux相识相知】网络属性配置
    MySQL之基本语句
    【linux相识相知】sed命令
    【Linux相识相知】yum的配置使用和程序包的编译安装
  • 原文地址:https://www.cnblogs.com/lisicn/p/15068037.html
Copyright © 2011-2022 走看看