作者热门文章
- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我在一个名为 deep
的 docker 镜像中有一定的 Python 设置。我曾经运行python代码
docker run --rm -it -v "$PWD":/app -w /app deep python some-code.py
关于信息,-v
和 -w
选项用于将当前路径中的本地文件链接到容器。
但是,我不能使用 matplotlib.pyplot
。假设 test.py
是
import matplotlib.pyplot as plt
plt.plot([1,2], [3,4])
plt.show()
我收到了这个错误。
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.7/dist-packages/matplotlib/pyplot.py", line 3147, in plot
ax = gca()
File "/usr/lib/python2.7/dist-packages/matplotlib/pyplot.py", line 928, in gca
return gcf().gca(**kwargs)
File "/usr/lib/python2.7/dist-packages/matplotlib/pyplot.py", line 578, in gcf
return figure()
File "/usr/lib/python2.7/dist-packages/matplotlib/pyplot.py", line 527, in figure
**kwargs)
File "/usr/lib/python2.7/dist-packages/matplotlib/backends/backend_tkagg.py", line 84, in new_figure_manager
return new_figure_manager_given_figure(num, figure)
File "/usr/lib/python2.7/dist-packages/matplotlib/backends/backend_tkagg.py", line 92, in new_figure_manager_given_figure
window = Tk.Tk()
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1818, in __init__
self.tk = _tkinter.create(screenName, baseName, className, interactive, wantobjects, useTk, sync, use)
_tkinter.TclError: no display name and no $DISPLAY environment variable
通过解决方案搜索,我只有一个解决方案。我想我可以做到,如果
$ xauth list
xxxx/unix:0 yyyy 5nsk3hd # copy this list
$ docker run --rm -it -v "$PWD":/app -w /app \
--net=host -e DISPLAY \
-v /tmp/.X11-unix:/tmp/.X11-unix \
deep bash
inside-container$ xauth add xxxx/unix:0 yyyy 5nsk3hd # paste the list
inside-container$ python test.py # now the plot works!!
我的问题是,不是所有那些启动 bash
、设置 xauth
并在 inside 容器中运行 Python,我能做到吗使用 docker run
进行这样的设置,这样我就可以在容器外运行代码?
我试过了
docker run --rm -it -v "$PWD":/app -w /app \
--net=host -e DISPLAY \
-v /tmp/.X11-unix:/tmp/.X11-unix \
-e "xauth add xxxx/unix:0 yyyy 5nsk3hd" \
deep python test.py
使用 --entry
参数,但它不起作用。请帮忙。
最佳答案
有趣的是,我在 ROS 社区中找到了非常好的和彻底的解决方案。 http://wiki.ros.org/docker/Tutorials/GUI
对于我的问题,我最后的选择是教程中的第二种方式:
docker run --rm -it \
--user=$(id -u) \
--env="DISPLAY" \
--workdir=/app \
--volume="$PWD":/app \
--volume="/etc/group:/etc/group:ro" \
--volume="/etc/passwd:/etc/passwd:ro" \
--volume="/etc/shadow:/etc/shadow:ro" \
--volume="/etc/sudoers.d:/etc/sudoers.d:ro" \
--volume="/tmp/.X11-unix:/tmp/.X11-unix:rw" \
deepaul python test.python
关于python - 如何在 docker 容器中使用 matplotlib.pyplot?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46018102/
我是一名优秀的程序员,十分优秀!