Getting Python error “from: can't read /var/mail/Bio”

后端 未结 6 1975
长发绾君心
长发绾君心 2020-12-24 11:42

I am running a (bio)python script which results in the following error:

from: can\'t read /var/mail/Bio

seeing as my script doesn\'t have a

6条回答
  •  长情又很酷
    2020-12-24 11:59

    I got same error because I was trying to run on

    XXX-Macmini:Python-Project XXX.XXX$ from classDemo import MyClass
    
    from: can't read /var/mail/classDemo
    

    To solve this, type command python and when you get these >>> then run any python commands

    >>>from classDemo import MyClass
    >>>f = MyClass()
    

提交回复
热议问题