pip 安装什么意思是?

pip 安装什么意思是?

我正在安装这个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具有依赖包的文本表示。

参考:

  1. 可用的这里是 的官方文档pip
  2. 有关更好的 Python 开发工作流程,请参阅这里了解为什么应该使用pipvirtualenv

相关内容