跟随[GitHub][1]的实验室学习更多关于Docker容器的信息,我感觉到了这个问题:
No matching distribution found for Flask==0.10.1 (from -r /usr/src/app/requirements.txt (line 1))
Could not fetch URL https://pypi.python.org/simple/flask/: There was a problem confirming the ssl certificate: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:726) - skipping```
[1]: https://github.com/docker/labs/blob/master/beginner/chapters/webapps.md
这个问题与我在BlueCoat(一种防火墙)后面的一个网络中有关,它检查并隐藏了我的桌面和互联网上的几乎所有通信。
在Feld googles seach之后,我找到了忽略证书问题的命令:
只需将其添加到我的dockerfile--trusted-host pypi.org--trusted-host pypi.python.org--trusted-host=files.pythonhosted.org
# our base image
FROM alpine:3.5
# Install python and pip
RUN apk add --update py2-pip
# install Python modules needed by the Python app
COPY requirements.txt /usr/src/app/
RUN pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host=files.pythonhosted.org --no-cache-dir -r /usr/src/app/requirements.txt
# copy files required for the app to run
COPY app.py /usr/src/app/
COPY templates/index.html /usr/src/app/templates/
# tell the port number the container should expose
EXPOSE 5000
# run the application
CMD ["python", "/usr/src/app/app.py"]
我不能通过pip安装安装任何外部python模块。我已经正确安装了python,但如果我使用pip_install它显示我这个错误。 下面是我运行
我在Windows上设置了Rails项目和数据库,一些宝石丢失了。当试图安装他们我得到以下错误: 我试过了 https://gist.github.com/luislavena/f064211759ee0f806c88 和 SSL错误安装rubygem时,无法从https://rubygems.org/ 但这些都没有奏效。有什么想法吗?
问题内容: 我无法通过pip install安装任何外部python模块。我已经正确安装了python,但是如果我使用pip_install,它将显示此错误。 这是我运行后的代码 我该如何解决这个问题? 我可以使用此命令部分解决问题 但是我在这里找不到此问题建议的计算机上的任何pip.ini文件夹 有任何永久解决此问题的建议吗? 问题答案: 当我在需要外部网络访问权限代理的公司网络中时,我遇到了类
问题内容: 我正在尝试使用pip为Python安装Scrapy软件包(以及其他)。我曾尝试做使用python 3和python 2安装,我已经安装/升级,像这样的setuptools:我曾尝试使用选项像这样:。但是当我运行时,我总是收到相同的错误消息。完整的输出是这样的: 我在Mac OS版本10.12.1上,并且正在使用python 3.6。有人知道这个问题的解决方案吗? 问题答案: 如此处所述
怎么修?