Python Forum
[notice] A new release of pip available: 22.3.1 -> 23.1.2 [notice] To update, run: C:
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[notice] A new release of pip available: 22.3.1 -> 23.1.2 [notice] To update, run: C:
#1
Hello, recent python user and coder. Just started learning one week ago. I recently installed python and pygame. inputted pip install pygame I got the message

[notice] A new release of pip available: 22.3.1 -> 23.1.2

[notice] To update, run: C:\Users\Brandon\AppData\Local\Microsoft\WindowsApps\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\python.exe -m pip install --upgrade pip

I am not sure what to do now, for context I downloaded python via the microsoft app store.

This is because it would not properly download on my computer otherwise.

I am not sure what to do now, any help would be appreciated.

Cheers

Attached Files

Thumbnail(s)
   
Reply
#2
You can just upgrade pip.
Do a basic check that Path is ok,and point to same place.
I use cmder here,but commands are just same in cmd.
G:\div_code\hex
λ python -V
Python 3.11.3

G:\div_code\hex
λ where python
C:\python311\python.exe

G:\div_code\hex
λ pip -V
pip 22.3.1 from C:\Python311\Lib\site-packages\pip (python 3.11)
So if ok,can just do this.
G:\div_code\hex
# Don't need whole Path
λ python -m pip install --upgrade pip
Requirement already satisfied: pip in c:\python311\lib\site-packages (22.3.1)
Collecting pip
  Using cached pip-23.1.2-py3-none-any.whl (2.1 MB)
Installing collected packages: pip
  Attempting uninstall: pip
    Found existing installation: pip 22.3.1
    Uninstalling pip-22.3.1:
      Successfully uninstalled pip-22.3.1
Successfully installed pip-23.1.2

# Check again
G:\div_code\hex
λ pip -V
pip 23.1.2 from C:\python311\Lib\site-packages\pip (python 3.11)
Reply
#3
Thank you for the message, I will try it out this Monday, cheers.
Reply
#4
I tested out the method you described and it worked, thank you snippsat.
snippsat likes this post
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  how to avoid deprecation notice merrittr 5 1,308 Nov-27-2023, 11:12 PM
Last Post: rob101
  Will JoinableQueue.join() always notice the counter reaching 0? RobinVeer 1 794 Oct-07-2022, 09:28 AM
Last Post: Larz60+
Question Python + Google Sheet | Best way to update specific cells in a single Update()? Vokofe 1 2,731 Dec-16-2020, 05:26 AM
Last Post: Vokofe
  How to get mouse coordinates on click and release OhNoSegFaultAgain 1 3,024 May-17-2019, 06:56 PM
Last Post: buran
  Python 3.4: the only release to create .EXE standalone without .dll samsonite 7 5,869 Feb-28-2019, 09:20 AM
Last Post: samsonite
  How to release control of file jmair 2 2,813 Oct-03-2018, 08:22 PM
Last Post: jmair
  Release kbhit Epilepsy 2 4,358 May-26-2018, 10:47 AM
Last Post: snippsat
  How to release Memory of GPU! majinbuu 1 2,648 May-11-2018, 05:06 AM
Last Post: j.crater
  3.6.2 is latest stable release right? And "path length" Fran_3 3 3,360 Aug-01-2017, 02:04 PM
Last Post: Fran_3
  How to I make my program release memory? Plecto 11 10,762 Dec-18-2016, 10:03 PM
Last Post: wavic

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020