please explain please)
1 answer
pip is a package management system that is used to install and manage software packages written in Python.
That is, thanks to pip, you can eliminate dependencies (if you are using the source code of someone’s project and are going to build it).
But before using pip it, of course, needs to be installed. The Internet is full of documentation in both Russian and English.
Put the python package
Means that to build this product requires a certain dependence and it can be solved with the help of pip
- And pip often comes bundled with a python, you just need to find it. For example, for windows, you need to look for it in the
Scriptsfolder, i.e. the path can beC:\Python34\Scripts, and so that it can be called from the console as> pip, and not with the full path> C:\Python34\Scripts\pip, you need to add the path to theScriptsfolder and in the path variables restarting the pip console will immediately be - gil9red - @ gil9red do not need to install anything: Both Python 2 and Python 3 come with a pip. If during installation the path to Scripts is not specified, then
py -mpipcan be used to start pip. - jfs - @jfs I wrote that, or did you get confused by the word "often"? I don’t remember exactly where, but it seems that python 3.5 did not have a pip on the Raspberry Pi, I had to install with what kind of setup python script. In that script, the archive with pip is still inside in byte view :) - gil9red
- @gil9red I explained to people like me who might not understand you that way. In cases where the distribution of pip is removed from the distribution of python, you should use the native tools for the platform, for example, python3-pip package - jfs
|