Pycharm无法导入自定义包问题

报错

No module named verificateCodeSendingSMS less... (Ctrl+F1) This inspection detects names that should resolve but don't. Due to dynamic dispatch and duck typing, this is possible in a limited but useful number of cases. Top-level and class-level items


解决:

在pycharm中设置source路径

file–>setting–>project:server–>project structure

将放package的文件夹设置为source,这样import的模块类等,就是通过这些source文件夹作为根路径来查找,也就是在这些source文件夹中查找import的东西。

作者:逍遥自在017
链接:https://www.jianshu.com/p/f36f32f34ce1
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

Pycharm无法导入自定义包问题_第1张图片

例子:

有一个程序verificateCodeSendingSMS.py文件

def testPrint():
    print('你好')

print('000000000')
if __name__ == '__main__':
    print('啊发发')

另一个程序callFucntion.py调用上一个程序

import verificateCodeSendingSMS

def testCallFunction():
    print('调用发短信的函数')
    verificateCodeSendingSMS.testPrint()


testCallFunction()

结果:

000000000
调用发短信的函数
你好

你可能感兴趣的:(python)