Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我克隆了 typeshed但我不知道如何告诉 mypy 使用它包含的类型提示,我在 mypy --help 中看不到任何选项。mypy repo 确实包含对 typeshed repo 的引用,但安装它的 pip 不会下载它。
默认情况下,Mypy 与 typeshed 捆绑在一起,因此您不需要做任何事情——只需做pip install mypy就可以正确安装它。
pip install mypy
请注意,typeshed 不是 Python 模块,因此无法从 Python 程序导入它或以其他方式访问它,除非您从字面上查看存根存储在文件系统中的位置。
由于版本0.4.6 mypy具有选项--custom-typeshed:
mypy
--custom-typeshed
mypy --py2 --custom-typeshed ~/REPOS/PYTHON/mypy/typeshed my-thing.py
有关详细信息,请参阅文档的命令行参考和问题 2323。