running pyinstaller after Anaconda install results in ImportError: no Module named 'pefile'

后端 未结 2 1027
野的像风
野的像风 2021-01-03 03:23

I did conda install -c acellera pyinstaller=3.2.3 as per Anaconda\'s website and it looks like it installed correctly but I get the following if I try to run it

相关标签:
2条回答
  • 2021-01-03 03:33

    You can use Anaconda's pip to install it, just go to the Script folder in Anaconda and execute:

    pip.exe install pefile
    
    0 讨论(0)
  • 2021-01-03 03:55

    install this instead:

    conda install -c conda-forge pyinstaller=3.2.1
    

    working fine for me after a couple of tries!

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