在Anaconda3中找不到Python的shapely模块的解决方法如下:
conda install -c conda-forge shapely
conda activate
import sys
sys.path.append('')
其中,是shapely模块的路径。你可以使用以下代码来查找shapely模块的文件夹路径:
import shapely
print(shapely.__file__)
将打印出的路径复制到sys.path.append()的参数中。
希望以上解决方法能帮助你解决Anaconda3中找不到Python的shapely模块的问题!