Installing Python Packages - IronPython

前端 未结 1 1528
梦如初夏
梦如初夏 2021-01-02 21:46

I\'d like to add the PRAW package to an IronPython solution in VS however it\'s proving to be a pain in the butt. Here are steps I\'m taking

  • right-click on Ir
相关标签:
1条回答
  • 2021-01-02 22:06

    You have to run IronPython with the command line option -X:FullFrames. I'm not sure, though, how to set that up in the VS.

    Maybe you can manually run it:

    C:\path\to\ipy64.exe -X:FullFrames path\to\pip.py install whaterver_you_want
    
    0 讨论(0)
提交回复
热议问题