FFGo: Difference between revisions

Jump to navigation Jump to search
528 bytes added ,  25 March 2016
→‎Installing FFGo and its dependencies: Favor using the Python Launcher for Windows over specifying a full path to pip executable, because said path seems to heavily depend on the Windows version
(→‎MacOS X: Add precision + improve formatting (use a list))
(→‎Installing FFGo and its dependencies: Favor using the Python Launcher for Windows over specifying a full path to pip executable, because said path seems to heavily depend on the Windows version)
Line 184: Line 184:
       </li>
       </li>
       <li>
       <li>
         If you are not comfortable with the [[Command_line|command line]]
        <p>
        (“Command Prompt”), it is suggested you choose <i>Add python.exe to
         If you are not comfortable with the [[Command_line|command line]] (“Command Prompt”), it is suggested you choose <i>Add python.exe to Path</i> (or <i>Add Python X.Y to PATH</i>: the precise wording depends on the Python version). This way, you will be able to run the <tt>pip</tt> and <tt>ffgo</tt> programs directly at the Command Prompt in the simplest possible way (this mainly matters for <tt>pip</tt>, because for <tt>ffgo</tt>, you can easily create a shortcut on the Desktop, for instance).
        Path</i> (or <i>Add Python X.Y to PATH</i>: the precise wording
         </p>
        depends on the Python 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 to specify their full paths.


         <p>
         <p>
Line 197: Line 194:
         <blockquote>
         <blockquote>
           <p>
           <p>
             In such a case, you'll have to type commands such as:
            [[File:FFGo - Windows installation using the Python Launcher for Windows (py).png|thumbnail|Windows installation under Python 3.5 using the Python Launcher for Windows (py)]]
             In such a case, assuming you didn't disable the [https://docs.python.org/3/using/windows.html#launcher Python Launcher for Windows] in the Python installer, you'll have to type commands such as:
           </p>
           </p>


           <pre>C:\PythonXY\Scripts\pip install ...</pre>
           <pre>py -3.5 -m pip install ...</pre>


           <p>
           <p>
             (where <i>XY</i> would be <tt>35</tt> for a Python 3.5
             instead of:
            installation, for instance) instead of:
           </p>
           </p>


Line 210: Line 207:


           <p>
           <p>
             [[File:FFGo - Windows installation using the Python Launcher for Windows (py).png|thumbnail|Windows installation under Python 3.5 using the Python Launcher for Windows (py)]]
             Such a command is similar 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 Windows system.
             Another way would be to use the
          </p>
            [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>
             Another way would be to call the desired <tt>pip</tt> executable by specifying its full path, like this:
           </p>
           </p>


           <pre>py -3.5 -m pip install ...</pre>
           <pre>C:\PythonXY\Scripts\pip install ...</pre>


           <p>
           <p>
             Such a command is akin to <code>pip install ...</code> but makes
             (where <i>XY</i> would be <tt>35</tt> for a Python 3.5 installation, for instance)<br />
            sure that <tt>pip</tt> is run by Python 3.5, in case there are
             This method requires knowing where the Python installation you are interested in is installed (<tt>C:\PythonXY</tt> in this example), which seems to depend on the Windows version. Therefore, the <code>py -X.Y -m pip ...</code> method, using the [https://docs.python.org/3/using/windows.html#launcher Python Launcher for Windows], will be preferred here.
             several Python installations on your system.
           </p>
           </p>
         </blockquote>
         </blockquote>
377

edits

Navigation menu