代码之家  ›  专栏  ›  技术社区  ›  Andrey Fedorov

如何使用MacPorts降级动态库?

  •  0
  • Andrey Fedorov  · 技术社区  · 15 年前

    我的py mysql很不错,因为我升级了mysql libmysqlclient_r.15.dylib 具有 libmysqlclient_r.16.dylib . 我该如何找到并取回旧版本?

    编辑:我发现要安装旧版本的MySQL,我需要做@,但我仍在寻找找到旧版本的方法。

    2 回复  |  直到 15 年前
        1
  •  1
  •   outis    15 年前

    安装旧版本很麻烦。你必须从 MacPorts SVN Repository 这很棘手,因为您不能直接搜索特定版本。一旦您下载了适当的端口文件,就和安装任何其他端口一样容易。阅读官方文件 how to install an older version of a port 详细信息的文档。还有一个 older procedure 这样就可以将下载的端口添加到本地端口存储库中。

        2
  •  3
  •   Andrey Fedorov    15 年前

    不知道如何找到旧版本(请继续回答,我接受)。但我修复它的方法是激活旧版本:

    dreBook:~ fedorov$ port installed mysql5
    The following ports are currently installed:
      mysql5 @5.0.81_0
      mysql5 @5.1.40_0 (active)
    dreBook:~ fedorov$ sudo port activate mysql5 @5.0.81_0
    --->  Deactivating mysql5 @5.1.40_0
    --->  Activating mysql5 @5.0.81_0
    dreBook:~ fedorov$ sudo apachectl restart
    

    哎呀!