Abnormal behavior of python package eve

前端 未结 1 1660
北恋
北恋 2021-01-28 13:08

I have installed the eve package on my windows machine but every time I shutdown the machine and try to load the eve package I get module not found error.

On re-install

相关标签:
1条回答
  • 2021-01-28 13:45

    I don't have this issue after a quick test. Let me share with you all steps and let me know anything is different.

    1) Enter Anaconda Prompt

    2) conda create -n eswar python=3.6

    3) conda activate eswar

    4) pip install eve

    5) python

    5.1) import eve

    5.2) exit()

    6) shutdown windows machine

    7) restart windows machine

    8) enter anaconda prompt

    9) conda activate eswar

    10) python

    11) from eve import Eve

    12) everything looks fine.

    did you forget to activate your env after restart?

    0 讨论(0)
提交回复
热议问题