我正在安装这个https://github.com/wkentaro/pytorch-fcn。它告诉我执行这个指令。
git clone https://github.com/wkentaro/pytorch-fcn.git
cd pytorch-fcn
pip install .
是什么pip install .
意思?我只需输入点就可以运行哪个文件夹或文件setup.py
?
答案1
pip
基本上,您要指定包管理器从中提取包信息的位置。
例如:
# Get the Source code
git clone https://github.com/wkentaro/pytorch-fcn.git
# Change into the cloned git repository:pytorch-fcn
cd pytorch-fcn
# Install the package definitions from current location i.e. pytorch-fcn.
pip install .
这里有一个简短的描述:
pip
执行它将setup.py
加载requirements.txt
具有依赖包的文本表示。
参考: