Dockerfile里pip.conf报错ConfigParser.MissingSectionHeaderError: File contains no section headers.

Posted pcat

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Dockerfile里pip.conf报错ConfigParser.MissingSectionHeaderError: File contains no section headers.相关的知识,希望对你有一定的参考价值。

Dockerfile的部分内容如下:

RUN mkdir /root/.pip && echo -e "[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple" > /root/.pip/pip.conf
RUN pip install PyCryptodome

目测是没有问题,可是docker build的时候就报错:

ConfigParser.MissingSectionHeaderError: File contains no section headers.

惊讶,然后尝试打印pip.conf的内容:

-e [global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple

发现-e竟然进入到文件内容里,诡异。

最后发现去掉-e就可以,而且Dockerfile的echo不加-e参数也可以识别转义字符。

以上是关于Dockerfile里pip.conf报错ConfigParser.MissingSectionHeaderError: File contains no section headers.的主要内容,如果未能解决你的问题,请参考以下文章

pip 没有读取 ~/.pip/pip.conf

在 pip.conf 中指定多个受信任的主机

pip.conf 不关注可信主机

CentOs 永久置换pip镜像源

pip.conf 中用于私有 PyPI 的凭据

pip和apt-get换源