ModuleNotFoundError: No module named 'pyts'
ModuleNotFoundError: No module named 'pyts'
当我尝试在 anaconda 提示符下安装时:
pip install pyts
它给我这个错误:ERROR: Cannot uninstall 'llvmlite'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.
我该如何解决?
我会用 python 检查你的 PATH,在 Windows 上有大量关于使用环境变量和利用 PATH 的精彩 YT 视频。
然后安装pyts时:
pip install pyts --user
听起来您的 PATH 问题似乎首先没有正确配置。
当我尝试在 anaconda 提示符下安装时:
pip install pyts
它给我这个错误:ERROR: Cannot uninstall 'llvmlite'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.
我该如何解决?
我会用 python 检查你的 PATH,在 Windows 上有大量关于使用环境变量和利用 PATH 的精彩 YT 视频。
然后安装pyts时:
pip install pyts --user
听起来您的 PATH 问题似乎首先没有正确配置。