在 virtualenv 中使用 pip 安装tipfy

发布于 2024-10-14 10:58:47 字数 1781 浏览 3 评论 0 原文

我使用 在 OS X 上安装了 适用于 Python 的 Google App Engine SDK GoogleAppEngineLauncher-1.4.1.dmg 包。

我创建了一个基于 Python 2.5 的 virtualenv ,然后安装了 werkzeugtipfy 如下:

mkvirtualenv -p python2.5 tipfy-sandbox
pip install werkzeug
pip install tipfy

但是,当我运行Python 解释器和导入tipfy,然后用dir(tipfy)内省tipfy ,我收到的只是:

['__doc__', '__name__', '__path__', 'ext']

当然,这并不是完全安装的 tipfy 的全部内容。

  1. 是否可以使用 tipfy ="nofollow">点?
  2. 我还需要安装什么才能让 tipfyvirtualenv
  3. 使用 tipfy 时">pip,我还可以使用 GoogleAppEngineLauncher 吗?我必须使用 GoogleAppEngineLauncher 吗?

配置

  • 我使用的是 OS X 安装的 Python 2.5.4
  • virtualenv 1.5.1
  • pip 0.8.1

I installed the Google App Engine SDK for Python on OS X using the GoogleAppEngineLauncher-1.4.1.dmg package.

I created a Python 2.5 based virtualenv and then installed werkzeug and tipfy as follows:

mkvirtualenv -p python2.5 tipfy-sandbox
pip install werkzeug
pip install tipfy

However, when I run the Python interpreter and import tipfy and then introspect tipfy with dir(tipfy), all I receive is:

['__doc__', '__name__', '__path__', 'ext']

Surely that's not everything from a fully installed tipfy.

  1. Is it possible to install tipfy using pip?
  2. What else do I need to install to get tipfy working in a virtualenv?
  3. When installing tipfy using pip, can I still use the GoogleAppEngineLauncher? Do I have to use the GoogleAppEngineLauncher?

Configuration

  • I'm using the OS X installed Python 2.5.4
  • virtualenv 1.5.1
  • pip 0.8.1

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

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

发布评论

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

评论(1

贪了杯 2024-10-21 10:58:47

中提供的配方

使用tipfy的推荐方法是通过构建,使用http://www.tipfy .org/wiki/guide/installation/

您可以尝试使用 virtualenv 并在其中运行构建(我使用这个并且可以工作,但没有意义,构建 1.5.x 提供与现在构建相同的隔离级别)

The recomendend way to use tipfy is via buildout, with the recipe provided in

http://www.tipfy.org/wiki/guide/installation/

you can try to use virtualenv and run the buildout inside this one (i use this one and works, but without sense, buildout 1.5.x give the same isolation level than buildout now)

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