Jinja 安装 python

发布于 2024-11-24 13:14:56 字数 221 浏览 3 评论 0原文

我不经常使用 Python,但现在我必须使用。我应该运行一个需要 Jinja 的 python sctipt。 Python2.7 安装在我的 Windows XP 上并且可以工作,但我找不到如何安装 inja 包。

有人愿意为我写一份分步安装指南吗?

我只需运行一次即可为我创建一些输出,所以我不想 tp ddep 深入其中,所以请。如果这是一个非常初级的问题,请原谅我。

谢谢

I don't use Python regularly, but now I have to. I should run a python sctipt that need Jinja. Python2.7 is installed on my Windows XP and works, but I can't find how to install inja package.

Would anybody be so kind to write me a step by step install guide for it?

I have to run this only once to create some outputs for me, so I don't want tp ddep dive into it, so pls. forgive me if it is a very beginner level question.

Thx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

友欢 2024-12-01 13:14:56

看看这个。您可以使用 setuptoolspip 安装 jinja。只需在 DOS 提示符中输入这些命令

easy_install Jinja2

,或者

pip install Jinja2

您应该在 Windows 上将 easy_install.exe 与您的 python 捆绑在一起

希望这有帮助

have a look at this. You can use setuptools or pip to install jinja. Just enter those command into a DOS prompt

easy_install Jinja2

or

pip install Jinja2

You should have easy_install.exe bundled with your python on windows

Hope this helps

爱的那么颓废 2024-12-01 13:14:56

有关更新(git路径)请参阅:http://jinja.pocoo .org/docs/dev/intro/

git clone git://github.com/mitsuhiko/jinja2.git
cd jinja2
sudo
cp -r jinja2 /usr/lib/python2.X/site-packages
exit

注意:jinja2 中的 jinja2 子目录已经包含了打包为 python 库的所有文件,并且已经准备好供您的 /usr/lib...

For updates (git path) see: http://jinja.pocoo.org/docs/dev/intro/

git clone git://github.com/mitsuhiko/jinja2.git
cd jinja2
sudo
cp -r jinja2 /usr/lib/python2.X/site-packages
exit

Note: The jinja2 subdirectory in jinja2 already includeds all the files packaged as a python library and is ready for your /usr/lib...

2024-12-01 13:14:56

我需要安装 jinja2 作为 Ansible 的依赖项,并且不想使用 pippip3。安装 python-jinja2 包就可以了:

apt install python-jinja2

I needed to install jinja2 as a dependency for Ansible and didn't want to use pip or pip3. Installing python-jinja2 package did the trick:

apt install python-jinja2
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文