I am installing this https://github.com/wkentaro/pytorch-fcn. It tells me to do this instruction.
git clone https://github.com/wkentaro/pytorch-fcn.git
cd pytorch-fcn
pip install .
What does pip install .
mean ? Which folder or file am i running by just typing dot ? setup.py
?
Basically you are specifying the location from which the
pip
package manager to extract the package information from.E.g.:
Here is a brief description:
pip
executes thesetup.py
which loads therequirements.txt
which has textual representation of the dependency packages.References:
pip
.pip
andvirtualenv
.