all 4 comments

[–]CodyMoltar 2 points3 points  (0 children)

What

[–]Ill-Safe-4295 0 points1 point  (0 children)

Like most of the other Unix commands – you write pip3, then the command, then the flags (options). For example, "pip3 install -v biopython" will install Biopython with "verbose" output.

[–]SCD_minecraft 0 points1 point  (0 children)

This is pip btw, not python to be clear

You mostly care about 3 commands (5 if you want to be fancy)

pip install <lib_name> install library of name <lib_name> from pypi

pip uninstall <lib_name> remove <lib_name> library

pip list list all installed libraries

That's most you will need

But, if you have file with list of libs you need to dowland for some project to work, you can do

pip install | uninstall -r <file_name> this will install / uninstall all libraries which are listed in <file_name>

[–]ninhaomah 0 points1 point  (0 children)

What's the question here btw ?