[Tutor] Empty script file.

Mats Wichmann mats at wichmann.us
Mon Jul 6 14:09:58 EDT 2020


On 7/6/20 7:15 AM, Nivesh Gupta wrote:
> I downloaded python on July 5 2020.
> The Setup was successful but the script folder was empty..
> There was no pip related file die too which I am not able to use pip
> install..

don't use the pip "executable" anyway, it will only lead you to eventual
confusion.  Install, instead, as

python -m pip install somepackage

Variants:
* if on Windows, using the python.org installer, you can install the
Python Launcher as well (recommended), if so substitute its name above

py -m pip install somepackage

* you may not want to install to a "system location", particularly on a
non-Windows system. You can instead install to a user-private location:

python -m pip install --user somepackage




More information about the Tutor mailing list