FFGo: Difference between revisions

732 bytes added ,  12 March 2016
→‎Installing FFGo and its dependencies: Improve formatting and explain how to use the Python Launcher for Windows for those who don't let the Python installer modify their PATH
(→‎Installing FFGo and its dependencies: Make the source markup more readable and easier to maintain)
(→‎Installing FFGo and its dependencies: Improve formatting and explain how to use the Python Launcher for Windows for those who don't let the Python installer modify their PATH)
Line 174: Line 174:
         version). This way, you will be able to run the <tt>pip</tt> and
         version). This way, you will be able to run the <tt>pip</tt> and
         <tt>ffgo</tt> programs directly at the Command Prompt without having
         <tt>ffgo</tt> programs directly at the Command Prompt without having
         to specify their full paths. If you choose not to do this, you'll have
         to specify their full paths.
        to type things such as
 
        <code>C:\Python<i>XY</i>\Scripts\pip install ...</code> instead of
        <p>
        <code>pip install ...</code>, where <i>XY</i> would be <tt>35</tt> for
          <i>If you choose not to do this:</i>
        a Python 3.5 installation.
        </p>
 
        <blockquote>
          <p>
            In such a case, you'll have to type commands such as:
          </p>
 
          <pre>C:\PythonXY\Scripts\pip install ...</pre>
 
          <p>
            (where <i>XY</i> would be <tt>35</tt> for a Python 3.5
            installation, for instance) instead of:
          </p>
 
          <pre>pip install ...</pre>
 
          <p>
            Another way would be to use the
            [https://docs.python.org/3/using/windows.html#launcher Python Launcher for Windows]
            (assuming you didn't disable it in the Python installer) like this:
          </p>
 
          <pre>py -3.5 -m pip install ...</pre>
 
          <p>
            Such a command is akin to <code>pip install ...</code> but makes
            sure that <tt>pip</tt> is run by Python 3.5, in case there are
            several Python installations on your system.
          </p>
        </blockquote>
       </li>
       </li>
     </ol>
     </ol>
377

edits