Django Python Macports
我通过 Macports 安装了 Django。 我浪费了很多时间让它发挥作用。
它仍然不起作用。 我想完全卸载 Django (Macports) 并使用简易安装 (DJANGO) 进行安装。 我想保留 Macports 而不是卸载它,因为我读过它应该有用。
我怎样才能实现这个目标?
感谢您的关注。
I installed Django via Macports.
I wasted a lot of time on making it work.
It still does not work.
I would like to COMPLETELY uninstall Django (Macports) and install with the easy install (DJANGO).
I would like to keep Macports and not uninstall it, because I read it SHOULD be useful.
How can I achieve this?
Thank you for your attention.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试过
port -f uninstall
?如果您想卸载通过 MacPorts 安装的所有内容,您可以运行:
您应该以 root 用户身份运行这些命令,因此请先使用
sudo
或su root
命令。根据您实际安装的内容,
是您可以找到的任何一个
Did you try
port -f uninstall <port>
?If you want to uninstall everything that you've installed with MacPorts you could run:
You should be running these commands as the root user, so either use
sudo
orsu root
before the commands.Depending on what you actually installed,
<port>
is any ofYou can find out with
django 与 Macport 应该可以工作。 py26-django 或 py27-django。这是您使用的 python 版本导致问题的原因。
检查你使用的是Mac自带的python还是通过macport安装的python。从终端尝试 python、python2.6、python2.7。
在我的 Mac (OSX 10.6.8) 上,默认的 python 版本是 2.6.1。 macport版本是2.6.7。
您可以使用 'ln -s' 将 /usr/bin/python 替换为 macport 版本
django with Macport should work. py26-django or py27-django. It is the python version you are using that causes the problem.
Check to see if you are using the python comes with Mac or python installed via macport. Try python, python2.6, python2.7 from the terminal.
On my Mac (OSX 10.6.8) the default python version is 2.6.1. The macport version is 2.6.7.
You can replace the /usr/bin/python with the macport version by using 'ln -s'