在Windows中安装RTree的许多问题

时间:2020-09-21 14:49:26

标签: python python-3.x windows pip r-tree

我一直在努力尝试在Windows 64中安装RTree for Python。前言:我运行过pip install --upgrade pip,并且我正在使用与Windows匹配的Python 64位。这是我尝试过的步骤:

1:在命令提示符下,pip install RTree/pip3 install RTree

问题:OSError:找不到或加载spacespaceindex_c-32.dll

错误:命令错误,退出状态为1:python setup.py egg_info检查日志以获取完整的命令输出。

2:从https://www.lfd.uci.edu/~gohlke/pythonlibs/#rtree下载了Rtree‑0.9.4‑cp39‑cp39‑win_amd64.whl

在命令提示符下,pip install "C:\Users\Noah Bolohan\Desktop\Python\Packages-Modules\Rtree-0.9.4-cp39-none-win_amd64.whl"

问题:错误:该平台不支持Rtree-0.9.4-cp39-cp39-win_amd64.whl。

*尝试重命名为Rtree-0.9.4-cp39-none-win_amd64.whl或Rtree-0.9.4-cp39-cp39-win_amd64.whl或Rtree-0.9.4-cp39-cp39-any.whl或任何其他组合和相同的错误

3:在Python中,import.pip; and then pip.pep425tags.get_supported()

问题:回溯(最近一次通话最近): 文件“”,第1行,位于 AttributeError:模块'pip'没有属性'pep425tags'

4:在Python中,

import wheel.pep425tags

print(wheel.pep425tags.get_supported())

问题:回溯(最近一次通话最近): 文件“”,第1行,位于 ModuleNotFoundError:没有名为“ wheel”的模块

5:在Python中,import pip._internal; print(pip._internal.pep425tags.get_supported())

问题:回溯(最近一次通话最近): 文件“”,第1行,位于 AttributeError:模块'pip._internal'没有属性'pep425tags'

6:在Python中,

python -c "import wheel.pep425tags as w
print(w.get_supported())"

错误:

python -c "import wheel.pep425tags as w
  File "<stdin>", line 1
    python -c "import wheel.pep425tags as w
                                          ^
SyntaxError: EOL while scanning string literal

print(w.get_supported())"

7:还尝试了pip._internal和相同的问题。

我缺少明显的东西吗?我觉得遇到的每个错误都在某处发布了一个解决方案,该解决方案对其他人有效,但对我不起作用。任何帮助将不胜感激。

0 个答案:

没有答案