- Categories · 教程-

2019

Matplotlib in Virtualenv

我使用的是 macOS 系统。当在虚拟环境中尝试使用 matplotlib 时,会出现如下的报错:

1
ImportError: Python is not installed as a framework. The Mac OS X backend will not be able to function correctly if Python is not installed as a framework. See the Python documentation for more information on installing Python as a framework on Mac OS X. Please either reinstall Python as a framework, or try one of the other backends. If you are using (Ana)Conda please install python.app and replace the use of 'python' with 'pythonw'. See 'Working with Matplotlib on OSX' in the Matplotlib FAQ for more informatio
May 16
Docker Volume的权限问题

这里我们要解决的是使用 Docker 过程中常见的 Volume 权限问题。具体而言,当我们用-v将宿主机的路径绑定到 Docker 镜像的内部路径时,有时候会导致 Docker 镜像缺少对这个目录的访问权限,从而导致进程出错。

May 08
Hexo+Next: 使用 Latex 公式

这次更换主题的很大一个动因就是因为在 NexT 这个主题上,开启 Latex 的支持很方便。网上关于这方面的文章其实不少,但是大部分都不全面,照本宣科下来,很可能不能用。这些教程一般就给了_config.yml文件的配置以及pandoc依赖安装,但是一些关键细节缺失了。这篇文章里我梳理了一下整个流程。

Apr 24