Newbie question here. I am teaching myself to code using Automate the Boring Stuff With Python and I'm stuck as I can't seem to set up pip. Here is the error message:
C:\Users\Rayanne>pip --version
Traceback (most recent call last):
File "C:\Users\Rayanne\AppData\Local\Programs\Python\Python310\lib\runpy.py", line 196, in _run_module_as_main
return _run_code(code, main_globals, None,
File "C:\Users\Rayanne\AppData\Local\Programs\Python\Python310\lib\runpy.py", line 86, in _run_code
exec(code, run_globals)
File "C:\Users\Rayanne\AppData\Local\Programs\Python\Python310\Scripts\pip.exe\__main__.py", line 4, in <module>
ModuleNotFoundError: No module named 'pip._internal'; 'pip' is not a package
I have tried reinstalling python and followed some tutorials online. Even though I install pip successfully, the same error appears. Have I accidentally deleted the pip._internal module? Any help would be appreciated!
Thank you!