"PIP 在 PYTHONPATH 中。请更改目录,这样就不会了。”
我正在 Windows 上工作。我安装了 mypy 并将其添加到外部工具中。 当我启动该工具时,我收到此消息:
C:\Users\MediaMonster\anaconda3\envs\APIP\Scripts\mypy.exe Downloads\bad_code.py
C:\Users\MediaMonster\anaconda3\envs\APIP is in the PYTHONPATH. Please change directory so it is not.
Process finished with exit code 1
您能帮我解决此问题吗?
我还附上了外部工具的设置。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的 PYTHONPATH 存储 Python 系统的重要文件路径。
由于某种原因,MyPy 不希望路径中包含 APIP。您需要弄清楚如何从路径中删除 APIP,通常是通过 Windows 用户设置或从命令行。一些潜在的提示 。
希望这有帮助。 LMK
Your PYTHONPATH stores important file paths for your Python system.
For some reason, MyPy doesn't want APIP in the path. You need to figure out how to remove APIP from the path, typically through your Windows user settings or from the command line. Some potential tips.
Hope this helps. LMK