help

Thomas Passin list1 at tompassin.net
Mon May 13 13:30:49 EDT 2024


On 5/12/2024 7:56 PM, Enrder via Python-list wrote:
>     good tader
> 
>     I need help to install the bcml, and is that after installing the python
>     and I go to the command prompt and put ''pip install bcml'' to install it
>     tells me "pip" is not recognized as an internal or external command,
>     program or executable batch file.
> 
>     I have tried everything, uninstalling and installing, restoring it,
>     activating and deactivating all the checkboxes that appear in the options
>     section, I searched the internet and the same thing keeps happening to me.
> 
> 
> 
>     If you can help me, I would appreciate it very much.

Launch pip using the following command.  If you don't run python using 
the name "python" then use the name you usually use (e.g., "py", 
"python3", etc.) -

python -m pip install bcml

This command causes Python to load and run its own copy of pip.  So the 
fact that the operating system can't find it doesn't matter.  You should 
always run pip this way, especially if you end up with several different 
versions of Python on the same computer.



More information about the Python-list mailing list