我正在尝试在 virtualenv 上安装 latex,作为将项目上传到 heroku 的一部分。我pip install texlive-latex-extra
还使用了、、等easy_install texlive-latex-extra
软件包,正如我所提到的。它给我一个消息说软件包不存在,尽管我已经在本地安装了它们:texlive-base
texlive-latex
texlive
texlive-latex-extra
Searching for texlive-latex
Reading http://pypi.python.org/simple/texlive-latex/
Couldn't find index page for 'texlive-latex' (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading http://pypi.python.org/simple/
No local packages or download links found for texlive-latex
我在这里遗漏了什么要点?
答案1
我认为你混淆了两个不同的概念。pip
是一个用于安装 python 包(在你当前系统上或虚拟环境中)的工具,你可以使用它来python
解释器。
您所指的软件包不是 Python 软件包,而是二进制软件包(提供 Ubuntu 系统特定的程序和库的软件包),并且只能安装在您的系统中(使用apt-get
或类似工具)。
因此,您无法在虚拟环境中安装 LaTeX(尽管最终您可以在 pip 中找到一些提供将 LaTeX 与 python 结合使用的绑定的包)。