Hey, that's me at 6:17 ! Glad it's still useful, and thanks for the shout-out Corey :)
@coreyms5 жыл бұрын
Ah, that’s awesome! That’s for helping people out on StackOverflow. You guys are awesome. Your contributions help out so much.
@ben978643 жыл бұрын
Thanks for the tip Rodrigo!! I just used it to update all the packages that came with the Anaconda installation of Python3.
@RandomShowerThoughts6 жыл бұрын
You might be the best source of programming information online. Thank you for everything
@jaishreeganeshtraders56724 жыл бұрын
Jnj
@nishilparmar28245 жыл бұрын
Corey, I am a new subscriber to your channel and I absolutely fell in love with all of your content from the very first video I watched !! Can't wait to go through them all and learn new things. Thank you for all the work you have put out and helping the newbie programmer community.
@avinasht23837 жыл бұрын
Those whoever asking questions about getting errors. I guess you guys are using python3.5 or later. If so Please enter 'pip3' not simply 'pip'. python pip package has been upgraded to pip3. Thanks
@simeonincognito62456 жыл бұрын
or not opening cmd as an "Administrator".. just a thought.
@lakshmananswaminathan11386 жыл бұрын
Thank you... It helped really
@alexanderburlingame31615 жыл бұрын
bless you, thanks.
@elyseemanzi68914 жыл бұрын
thank you, i helped me a lot
@haniehmoghaddasi16214 жыл бұрын
If you upgrade your pip to the last version, then you don't need to type pip3 every time(pip3 install -U pip)
@ramnarasimhan14997 жыл бұрын
Corey, all of your videos are crisp and to the point. This one was pitch perfect. Keep up the good work.
@ABMA794 жыл бұрын
an amazing explanation. Brief, full of useful tips, and hitting the target in the shortest period of time. Amazing tutorial. thank you so much.
@vikctar6 жыл бұрын
Man, that command to upgrade all the packages was neat.
'grep' is not recognized as an internal or external command, operable program or batch file.
@SCooldudeS2 жыл бұрын
not all heros wear capes and gowns
@OttoFazzl8 жыл бұрын
These tutorials are super cool! Freeze command and requirements packages installation is very handy indeed.
@heshankumarasinghe31594 жыл бұрын
Thank you.... This video has been helpful..... I will be revisiting this video again.....
@ST-wx6vw Жыл бұрын
Like your other Python videos, this one is also excellent. Corey, thank you so much!
@bipbopbipbop30696 жыл бұрын
For windows user having a problem: Press Windows + X Open command line (Administrator) type this -> python -m pip install --upgrade pip
@p6n7l5 жыл бұрын
I think it's py -m pip install --upgrade pip
@umit_olmez4 жыл бұрын
@@p6n7l thank you sir, your's right.
@madhu.badiginchala8 жыл бұрын
Thank you Corey!! Crisp and to the point tutorials. Excellent!!!
@jcnarasimhan42183 жыл бұрын
Great tutorial, a brief word on how to install or what is pip itself would have been helpful
@JoeJoseph793 жыл бұрын
Pip is the package installer of Python programming language. You can install packages like numpy, pandas, etc through Pip.
@Zero-ss6pn2 жыл бұрын
the much needed TUTORIAL
@mehdihussainseo2 жыл бұрын
Thank you sir for such an awesome video!
@easydatascience2508 Жыл бұрын
You can see mine too. Just uploaded a playlist for python crash course tutorials. Detailed source files available too.
@mollyaufdermauer99752 жыл бұрын
This was incredibly helpful.
@emanueler4 жыл бұрын
Really helpful! Thanks man
@shddadgomid98374 жыл бұрын
Thank you !!! that was helpful
@jaysanprogramming68186 жыл бұрын
It would be great if you put a link to the stack overflow you refer to and / or paste the command line in the description.
@robertrowe65795 жыл бұрын
This management package is quite an innovative one with features that increase efficiency and ease of use.
@alifhossain73754 жыл бұрын
Thank you this video helped me a lot
@sultanmuhammad77077 жыл бұрын
Hi Corey, Thank you very much for your excellent set of videos on python. Actually I am new in python, do have programming experience in 'C' long time back and have some linux experience. In this video, you have mentioned, how to upgrade all outdated packages, a better and easy way in my opinion (in bash) is pip install -U $(pip list -o|cut -f 1 -d ' ') This method is much simpler I think. Here, output of "pip list -o" is piped to "cut -f 1 -d ' '" which return first field (which is the package name) using white space as delimiter and output of all this is given to "pip install -U".
@sultanmuhammad77077 жыл бұрын
You can also do the same using list of packages from "pip freeze --local" as pip install -U $(pip freeze --local |cut -f 1 -d '=')
@Mr0o0o0o0o0o0o0o04 жыл бұрын
For that requirements file do it have to be in a spesific folder to be read by pip? @Corey Schafer
@PeterSodhi Жыл бұрын
Thank you
@justgivemethetruth5 жыл бұрын
grep -v, --invert-match Selected lines are those not matching any of the specified patterns. grep -v throws away the lines that match the pattern. In this case ^ means begins the line with a -e, so ... do not include those lines in the output. The dash in the -e must be escaped with the backslash or the grep command will see it as an argument to itself and not part of the pattern to match. The cut comment used the character following the -d ( delimiter ) to break the input line into fields and selects those fields, in this case the first field. Finally the xargs comment feeds the input to another command in a controlled ways such that it will not overwhelm the comment with too many arguments on the shell command line. Like if you wanted to do an ls -l on thousands of files the command line would choke ... so xargs breaks the command into separate invocations to be able to manage the input.
@cilpavincent37613 жыл бұрын
Hi Corey, Love all your videos. I just want to notify you that pip search is no more working (atleast for me!)
@BLACKNIGHTCODING4 жыл бұрын
very good overview
@hermesdhenares68934 жыл бұрын
Hi, Corey! First of all, thank you very much for your vids. They are brilliant! I'm having issues with the grep command (7:12) as I get a CommandNotFoundException. I just upgraded pip to the 20.2.1 version. What could be happening? Thanks again!
@lokeshvardhan53184 жыл бұрын
Are you using windows? If Yes, I dont think there is a command called grep for windows, they are for macOS and linux users...ig
@hermesdhenares68934 жыл бұрын
@@lokeshvardhan5318 Yes, I was on Windows. But now I'm on Ubuntu, so I will try this again. Thanks!
@5424816986 жыл бұрын
Brilliant!
@REL1C6 жыл бұрын
clever command. thanks for the video
@StephanieDavis8 жыл бұрын
Excellent
@jodhvirsingh86773 жыл бұрын
Thanx Corey for this wonderful series...I have a beginners question...how do we update the pip itself?
@richardlee110514 жыл бұрын
Nice video. Just add a note for windows user. The following powercli could be the trick to update packages in batch. Put echo as display only. pip list -o --exclude-editable --disable-pip-version-check | Select-Object -skip 2 | % {echo "pip -U $($_ -replace '(\w+)\s+.*', '$1')"}
@HarmanHundal013 жыл бұрын
This lists all packages to be updated in separate lines with a pip install -U in front of them. How do I get these lines to run.
@turboDout7 жыл бұрын
Keep in mind that these commands will vary for different OS systems.
@malharjajoo73937 жыл бұрын
good stuff about the requirements file
@alexandrecorlet75595 жыл бұрын
thank you!!
@boyananakiev48967 жыл бұрын
I'm a bit confused. I googled how to install pip and I did, following the tutorial on their website..basically I did python3.5 get-pip.py in to terminal when i downloaded the file get-pip.py and it did its thing and it downloaded. Now since I'm on a mac by default it loads the 2.7 python version which i dont care for very much. However, even though it was installed for 3.5 i cant install it for 2.7 as it gives me permission errors and simply typing any pip commands from the video in terminal errors out in -bash: pip: command not found, what do i need to do ?
@borkarfaiz6 жыл бұрын
use pip3 instead of pip and python3 instead of python
@RATANAGARWALITINFORMER4 жыл бұрын
thanks v helpfull
@mahsheedrayhani35014 жыл бұрын
Hey Corey, I love your tutorials in Python. They are so useful. However, I'm a new user in this software and I have a question. could you plz tell me in what environment do you type pip help and run it? cause every time I do the same in sublime text or IDLE file, I get an error!!
@abdulmalikbalogun25724 жыл бұрын
Mahsheed Rayhani Try it in Terminal
@irahazda4 жыл бұрын
I'm using windows but I couldn't run the 'cat requirements.txt' command. It says 'cat' is not recognized as an internal or external command, operable program or batch file.
@fioo_23864 жыл бұрын
"cat" is not a valid command in Windows, you could use "type" command as an alternative although it will later throw an error in "grep" command. If you are using Windows 10 you could install windows subsystem for linux, from the store, and you will be able to run a UNIX based terminal to check the commands. Or you could try to find alternatives for "cat", "grep" for windows and adjust the code
@jaysanprogramming68186 жыл бұрын
I dind't understood the freeze command. You had 3 packages installed so far but when you typed freeze it showed only one of them. Would you be kind to elaborate a little about this point?
@jaysanprogramming68186 жыл бұрын
It seems that the freeze command also allows to "freeze" packages versions in order to allow full compatibility. So it enforces to use outdated versions of packages if need be.
@justgivemethetruth5 жыл бұрын
@@jaysanprogramming6818 ... so freeze marks certrain packages as not to be upgraded then?
@jaysanprogramming68185 жыл бұрын
@@justgivemethetruth I cannot say for sure. pip.pypa.io/en/stable/reference/pip_freeze/
@SuperShank766 жыл бұрын
what happens if the package installed in my virtual env is newer than the version listed in requirements.txt and I attempted a 'pip install -r requirements.txt'? Would it downgrade the package assuming there are no conflicts?
@RamKumar_e9 жыл бұрын
Thanks for the tutorial Corey. Is there any way in pip to check the dependency packages required before installing the package?
@coreyms9 жыл бұрын
+Ram Kumar Yes. You can use pip show . Here is a link to a more detailed stackoverflow question and answer: stackoverflow.com/a/10319754
@RamKumar_e9 жыл бұрын
+Corey Schafer : Thanks, that was useful. pipdeptree is awesome, you can see the deps recursively.
@OttoFazzl8 жыл бұрын
+Corey Schafer (CoreyMS): Will pip automatically check and install all dependencies when installing a new package or it is a job of package developer to implement this functionality?
@dipankarrahuldey62494 жыл бұрын
I've gone through stackoverflow,tried all the possible options,but nothing worked in solving my SSL certificate error. I have anaconda installed, but in environment variables I've prioritized my virtual environment. Nothing worked. Please please help
@tomtravolta48337 жыл бұрын
Thanks a ton!
@dennisparks36926 жыл бұрын
I have an interesting situation, I installed pyodbc 3.7 with pip, SQL Server's python support msi, but the pyodbc wasn't put in the lib/scripts folder. There was a pyodbc put in the SQL Server program folder, probably from the .msi, but importing won't work as pyodbc has a from . import connect and a from .. import util, which are located the SQL program folders. Not sure how to continue with this.. ??? google didn't find anything useful, just says to run pip, which I already did. And there's also a .whl file too. not sure what to do with that your thoughts Corey? Have you used SQL Server with python? and a pip list shows pyodbc 4.0.24
@chloeren91753 жыл бұрын
There are no -U and -o on pip help list anymore, so how can I update my package?
@Sanju-mo6in4 жыл бұрын
0:01..what's the meaning of first line?
@avibas6195 жыл бұрын
Link to the stack overflow command: stackoverflow.com/questions/2720014/how-to-upgrade-all-python-packages-with-pip
@ferdousadnan58147 жыл бұрын
Why does it say source is not recognized as internal/external?? please help.
@WalterWhite-dr2yz4 жыл бұрын
I have pip installed on my Mac but it says pip command not found what should I do?
@rashidabbasi60354 жыл бұрын
good
@prav3nutube5 жыл бұрын
Able to install virtualenv but how to integrate these different environments with juypter notebook or other IDEs?? Thanks Corey.
@coreyms5 жыл бұрын
It depends on the IDE. They all do it differently. Jupyter allows you to select the environment when creating a new notebook
@SamualAnthony7 жыл бұрын
Is it common to commit to your git/version control the output from "pip freeze > requirements.txt". I really feel committing such a file would make sense. I would even want to update this file every time after running "pip install --upgrade" and push it to version control. What you guys think?
@coreyms7 жыл бұрын
Yes, it is common to commit the requirements.txt file
@pattamvishalkumar71556 жыл бұрын
im using windows 10 when i execute pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U im getting this error "'grep' is not recognized as an internal or external command, operable program or batch file. " what should i do now
@coreyms6 жыл бұрын
This command will only work on Mac and Linux. You could use Linux on Windows 10 though. I have a video on that if you search my channel
@umeshsunnapu6 жыл бұрын
where is the source for pip packages. Is there any conf file that pip uses to look into a repository for available/installed pip packages.???
@Mr0o0o0o0o0o0o0o04 жыл бұрын
Is there a way to see all the methods in the downloaded file?
@coderart__28024 жыл бұрын
someone help me: I get this error xargs: pip: No such file or directory
@Sanju-mo6in4 жыл бұрын
In python 3.5 and above, pip is renamed to pip3
@dheenupriya67364 жыл бұрын
@@Sanju-mo6in I used pip3 only - even then I get that error
@kellyfoulk24234 жыл бұрын
Do I need to install PIP seperately? I have python version 3.8 but when I type "pip help" I get "-bash: pip: command not found"
@ulfgj7 ай бұрын
hey corey. what about pipx? tried it out?
@yashsomaiya814110 ай бұрын
Could you please make a video on how to install PIP?
@santanukumar1317 Жыл бұрын
Will all these work on windows too ?
@C3Daddy08 жыл бұрын
What about a video that demonstrates how to upload a package to be found using pip? That would be a cool video as well.
@OttoFazzl8 жыл бұрын
+1
@dipamvasani87277 жыл бұрын
Whenever I run any pip command, it runs but at the bottom of the terminal output there is a message saying, "You are using pip version 8.1.2, however version 9.0.1 is available. You should consider upgrading via the 'pip install --upgrade pip' command." I have tried using the 'pip install --upgrade pip' command but it gives long red colored text and fails to upgrade. I've tried searching over the internet but nothing seems to work. I also tried removing pip and re installing it. I am running ubuntu (dual boot). 1. Do I really need to upgrade? 2. How should I upgrade if it's really necessary? Thanks
@coreyms7 жыл бұрын
Could you provide the error you are receiving?
@dipamvasani87277 жыл бұрын
This is the full output after I run pip install --upgrade pip: Collecting pip Using cached pip-9.0.1-py2.py3-none-any.whl Installing collected packages: pip Found existing installation: pip 8.1.2 Uninstalling pip-8.1.2: Exception: Traceback (most recent call last): File "/usr/local/lib/python2.7/dist-packages/pip/basecommand.py", line 215, in main status = self.run(options, args) File "/usr/local/lib/python2.7/dist-packages/pip/commands/install.py", line 317, in run prefix=options.prefix_path, File "/usr/local/lib/python2.7/dist-packages/pip/req/req_set.py", line 736, in install requirement.uninstall(auto_confirm=True) File "/usr/local/lib/python2.7/dist-packages/pip/req/req_install.py", line 742, in uninstall paths_to_remove.remove(auto_confirm) File "/usr/local/lib/python2.7/dist-packages/pip/req/req_uninstall.py", line 115, in remove renames(path, new_path) File "/usr/local/lib/python2.7/dist-packages/pip/utils/__init__.py", line 267, in renames shutil.move(old, new) File "/usr/lib/python2.7/shutil.py", line 303, in move os.unlink(src) OSError: [Errno 13] Permission denied: '/usr/bin/pip3' You are using pip version 8.1.2, however version 9.0.1 is available. You should consider upgrading via the 'pip install --upgrade pip' command.
@BurgerKingHarkinian6 жыл бұрын
I know, I'm probably way too late but you (or anybody else that has the same problem) probably have to prefix your command with "sudo ". In this case it would've been "sudo pip install --upgrade pip"
@shrinivaskamlakar77485 жыл бұрын
COrey, nice videos. Please help me understand what is venv?
@coreyms5 жыл бұрын
It's a way of creating a virtual environment. A virtual environment is basically a way to have all of your libraries for one project separate from others. I have videos specifically on virtual environments and venv if you search my channel.
@dsa14 жыл бұрын
you could have used pip list | awk '{print $1}' | xargs pip install -U
@riverasanchez8 жыл бұрын
I know this may sound like a crazy question... but can Eclipse & Anaconda co-exist in the same PC desktop environment?
@coreyms8 жыл бұрын
Hey Robert. Not a crazy question at all. Yes, I sometimes use Eclipse at work and the Python interpreter I have set up through Eclipse is using different Anaconda virtual environments. Also, if you're wondering if pip and conda can both co-exist as package managers, then yes they can as well.
@riverasanchez8 жыл бұрын
Wow! this are good news! and thank you for taking the time to reply. My next move is then to install Anaconda, PyCharm and a new one I just found out about (www.geany.org/). Then start getting familiarized with virtual environments for projects specific cases, but for that I am putting together a simplified small TS440 Xeon server running windows and 32Gb Ram for the virtual environments I got at a bargain tech hunt. Your videos are clearly helping lots of new programmers by building on good foundations! Thanks again!
@timothyshal47193 жыл бұрын
If you are on windows. cat will then be type
@sams9014 жыл бұрын
I'm using the latest version of Python (3.8) and when I type 'pip' or 'pip3' in the Command Prompt I still get the error message that it isn't recognizable. what can I do about it ? ;'(
@kaikyscot69684 жыл бұрын
I think you haven't added python to your path...did you ?
@kaikyscot69684 жыл бұрын
@Matthew Bunn kzbin.info/www/bejne/aoeUZXprlKiBfck hope this helps
@salehmd.hasanriaz62184 жыл бұрын
hi, can you tell me that, is there any video for windows OS users?
@AutomationDevelopmentEasy Жыл бұрын
Here -> kzbin.info/www/bejne/kKKlk6NqpsyZY7s
@Multijuicee8 жыл бұрын
I find it very difficult to properly get going with python because I have trouble getting the environment set up properly. One of them to be able to use pip. I have installed pip (just did) but when I run pip from cmd i get 'pip' is not recognized as an internal or external command? Is that something to do with system variables maybe? (I have 3 different python istalled on my system) I am not a computer scientist and are not familiar with these concepts and find it difficult to find info of what I should do, probably bc I dont really know where I should start looking. If you need inspirations for future videos there is one =) You are doing a great job, I am enjoying your videos.
@coreyms8 жыл бұрын
Hey there. It's hard to know exactly what is going on with limited information, but I would guess that since you have 3 different versions of python installed that pip isn't being installed on the correct path. In order to get a program to run from cmd, there has to be a correct path to that program so that it knows where to look. It's been a long time since I've used Windows so I may not be the best person to answer this question. I would try Googling "not recognized as an internal or external command" and you should see several sources that show you have to get cmd to see your executables. Good luck! Wish I could be of more help.
@Multijuicee8 жыл бұрын
Thanks for your reply! Yeah there is something weird going on. (I have muItiple python bc they came with installation of other programs) I deleted pip from where I thought it was installed, after running get-pip.py again it still say that it is up to date. I'm sure I will find out where the problem is. Thanks again for the videos.
@maryammemon37957 жыл бұрын
Im also a beginner i know whats the prob i just solved this few days ago its not in python or pip Its not add in ur pc settings so just watch any tutorial how to add python or pip in command prompt
@panagiotisgoulas85396 жыл бұрын
I used anaconda prompt and is is fine. I cannot run anything on cmd. Could you help me understand what's the issue. I am sure having to do with the pathways. Even a link that you found useful would be helpful. Thanks
@justgivemethetruth5 жыл бұрын
you need to give it the full path, or include the directory where pip resides in your path environment variable. A lot of python commands are not located in the usual system places where the normal path variable tells them where to look. Python3 on my mac is in an long path set up by the installer. There are differing ways I can use the command according to the OS.
@zacharymeyer9915 жыл бұрын
on windows py -m pip
@drulli15 жыл бұрын
Thx, that's the help for us windows fan boys
@swaroophumane87813 жыл бұрын
FYI, PyPI XMLRPC search API has been disabled due to flood of requests. `pip search` may be deprecated.
@antonybelkovich70127 жыл бұрын
Yesssss!!
@karanmalhotra18585 жыл бұрын
for me i always i have to run pip module through python -m ex:- python -m pip help python -m pip help install python -m pip search Pympler
@p6n7l5 жыл бұрын
that's also the case here
@fredmaurice76125 жыл бұрын
what terminal are you using? cmd or what? idk lol
@coreyms5 жыл бұрын
Mac terminal
@Appletree-db2gh7 жыл бұрын
How did you make the terminal look so much better? It is much more readable.
@coreyms7 жыл бұрын
I made several videos on how I modified my terminal. There are several that explain dotfiles in depth, but if you'd like to just see the final video on the final modifications then you can find that here: kzbin.info/www/bejne/mWa1i4p6gdacnKM
@Appletree-db2gh7 жыл бұрын
oh, great. Thank you!
@aperxmim6 жыл бұрын
Here is a link for installing the pip script file: www.makeuseof.com/tag/install-pip-for-python/
@readypubggo56503 жыл бұрын
Hey Corey, its been 8 months and we didn't get any video from your side. Are u all right?
@satishtesting196 жыл бұрын
Pip freeze --local | grep -v '^\-e' . How can we execute grep command in Windows machine. Grep is related to linux
@zzzanon5 жыл бұрын
Grep is not included with Windows. If you are using Windows 10, you may try using "Windows Subsystem For Linux" to get it.
@bellpepper32354 жыл бұрын
What are exactly difference between Python package and Python libraries?
@Odani87gui3 жыл бұрын
Hip-Pip-hooray
@cinematic_life1 Жыл бұрын
However, pip search : Permanently deprecated and disabled due to excessive traffic driven by unidentified traffic, presumably automated
@barnabygraham51873 жыл бұрын
"just type".... wait, what software are you even using?
@zes72156 жыл бұрын
nst as first thing or not
@MA-UTUBE-994 жыл бұрын
Hi there , I tried to use the command in video to upgrade multiple packages in windows powershell. It did not work. I did a quick Google search and found following which works. Web site is www.activestate.com >python -m pip freeze | %{$_.split('==')[0]} | %{pip install --upgrade $_} Hope it is of use to others.
@dharmateja6234 жыл бұрын
Hi Corey, Thanks for the wonderful video. For users facing issues with windows update packages please refer to the link: www.activestate.com/resources/quick-reads/how-to-update-all-python-packages/ or refer to the link given by zzz in the comments
@ShaidaMuhammad3 жыл бұрын
I though there is only one option: pip install package-name
@rantg Жыл бұрын
again, a programmer explain what is pip using... more code! as a 10 years Python programmer, i did not understand what pip is yet. What it does, where is it on my computer, where it put what "installed", how to access it, why use it, what is the alternative.
@alan-j5 жыл бұрын
@corey, I need a video on how to do a pip installation using a .whl file.. When i tried to awscli using a .whl file, even after having all the required depencies locally available, pip3 is still reaching to internet to get the dependencies, which i already hav locally.. Kindly update me on this..
@alhabib_o4 ай бұрын
This doesn't work on windows though, here is the equivalent command: pip freeze --local | Where-Object { $_ -notmatch '^\-e' } | ForEach-Object { $_.Split('==')[0] } | ForEach-Object { pip install -U $_ }
@mridulmacdu7 жыл бұрын
Hy help me there everything is went good before "cat" command C:\Users\MRIDUL>pip freeze > requirements.txt C:\Users\MRIDUL>cat requirements.txt 'cat' is not recognized as an internal or external command, operable program or batch file. I am using windows10 os... help me there and tell me if any other alternative way. Thanks for your tutorials...Well You already helps us a lot . You are just awesome as your Tutorials! cheers! :-)
@coreyms7 жыл бұрын
Hey there. On a Linux machine, cat just shows the contents of the file. So you could just open up requirements.txt in your file system to view the contents and skip the cat step.
the first executes the pip command in the python interpreter, the second invokes the pip commend from the command line.
@zzzanon5 жыл бұрын
I don't know for sure, but I believe the 1st command is the Windows way, while the 2nd command is for Linux and Mac.
@marcello42583 жыл бұрын
Oh my, sorry to say, but until now I thought your tuts are 1st class.. But forgetting to mention that packages should only be installed if 100% trusted is a big no-no. If you download a random packages without auditing it you face perhaps a malicious library which could do serious harm to your system/data/clients data, ransomware whatsoever. I never get it people are not mentioning it .. same goes for 99% of arch tutorials saying 'yea we are just downloading it from the AUR (where some random people uploaded some code we just gonna run like windows users like to do)'
@supadupahilton68482 жыл бұрын
But what is it??
@АлексейСоков-ь8и2 жыл бұрын
2022
@giorgikalandadze92633 жыл бұрын
@asza52 жыл бұрын
You skipped the most important part, how to start pip
@Sijitech6 ай бұрын
He is obviously using the old version of python that’s why he could just type in pip in the terminal> however, if you’re using the latest version which I’m sure you are, just type in ‘pip3 help on the terminal ‘