<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  </head>
  <body>
    <div class="moz-cite-prefix">Le 2022-08-15 à 17 h 33, Christopher
      Arndt a écrit :<br>
    </div>
    <blockquote type="cite"
      cite="mid:eaed1fd5-d5cc-4728-4d1b-a7aeefc99b17@chrisarndt.de">BTW,
      the recommended way to run pip is actually
      <br>
      <br>
      python -m pip <options>
      <br>
      <br>
      because then you can control (via PATH or the command name you
      use) which Python interpreter is used.<br>
    </blockquote>
    <br>
    So the Makefile could be:<br>
    <br>
    PIP = python3 -m pip<br>
    PKG = zita_audiotools<br>
    <br>
    build:<br>
        $(PIP) wheel .<br>
    <br>
    install:<br>
        $(PIP) install --force-reinstall $(PKG)*.whl<br>
    <br>
    uninstall:<br>
        $(PIP) uninstall $(PKG)<br>
    <br>
    clean:<br>
        rm -rf build $(PKG)*.egg-info $(PKG)*.whl<br>
    <br>
    Marc<br>
    <div id="grammalecte_menu_main_button_shadow_host" style="width:
      0px; height: 0px;"></div>
  </body>
</html>