Frederick Bartlett <frederick.bartl...@gmail.com> wrote:
>
>
> Oh, sorry! 2.16.2
>
> I have since found that I can run python scripts from the command line
> by typing, say,
>   python myscript.py
>
> While just typing
>   myscript
> produces an error, even though the Windows file association has been
> set to c:\Python27\python.exe.

The file association lets you type
    myscript.py

If you want to be able to type "myscript", you need to add .py to the
list of "automatic" extensions.  That is stored in the PATHEXT
environment variable:
    set PATHEXT=%PATHEXT%;.py;.pyw

-- 
Tim Roberts, t...@probo.com
Providenza & Boekelheide, Inc.


_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to