gpt4 book ai didi

python - 设置 CKAN 虚拟环境的问题

转载 作者:太空宇宙 更新时间:2023-11-03 17:10:45 24 4
gpt4 key购买 nike

我正在关注 Prepare to Use Extensions文档,我在将 CKAN 安装到虚拟环境中时遇到问题。

sudo apt-get install virtualenv python-pip mercurial
virtualenv /home/ubuntu/pyenv
. /home/ubuntu/pyenv/bin/activate

一开始这样做失败了,后来发现virtualenv应该是python-virtualenv

现在我遇到了以下问题:

pip install -e hg+http://bitbucket.org/okfn/ckan#egg=ckan

我收到错误代码 255,当我访问该 URL 时,源代码似乎已被删除并移至 Github。我是 Ubuntu、Python 和 CKAN 的初学者,所以我不确定如何正确更改此命令以指向新位置。

我尝试使用以下方法,但它对我不起作用:

pip install -e hg+https://github.com/ckan/ckan#egg=ckan

如何在虚拟环境中继续安装CKAN?

最佳答案

如果您在浏览器中访问该 URL,您将看到它现在有一个指向 github 的指针:

This repository has been deleted Our apologies, but the repository "ckan" has been deleted. It now lives at https://github.com/okfn/ckan.

因此,您可以:

 pip install -e 'git+git://github.com/ckan/ckan#egg=Package'

 pip install -e 'git+https://github.com/ckan/ckan#egg=Package'

我引用 URL 作为一个好的做法(因为 # 是 shell 中的注释字符),但在这种情况下它不是那样解释的,所以它不是绝对必要的。

关于python - 设置 CKAN 虚拟环境的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37579783/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com