我有一个用python编写的大项目。项目的计划部分之一可能会使用大熊猫。可以与anaconda distr一起安装。我用conda安装了它,但是如何在没有anaconda distr的现有python项目中使用geopandas。
我用spyder测试了.shp文件及其工作。但是我有这样的消息:
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xed in position 87: invalid continuation byte
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xed in position 90: invalid continuation byte
Exception ignored in: 'fiona._env.log_error'
好的。我试图在崇高的文本中使用已安装的anaconda python解释器。有了这样的构建系统
{
"cmd": ["D:\\Programs\\Anaconda3\\pythonw.exe", "-i", "-u", "$file"],
"file_regex": "^[ ]File \"(...?)\", line ([0-9]*)",
"selector": "source.python"
}
但是当我尝试导入geopandas时,出现导入错误。
Traceback (most recent call last):
File "D:\Programs\Anaconda3\lib\site-packages\numpy\core\__init__.py", line 16, in <module>
from . import multiarray
ImportError: DLL load failed: �� ������ ��������� ������.
During handling of the above exception, another exception occurred:
bla-blah
ImportError:
Importing the multiarray numpy extension module failed. Most
likely you are trying to import a failed build of numpy.
If you're working with a numpy git repo, try `git clean -xdf` (removes all
files not under version control). Otherwise reinstall numpy.
主要问题是如何在崇高的环境中使用象鼻虫?