How do I install modules on qpython3 (Android port of python)

前端 未结 3 1847
攒了一身酷
攒了一身酷 2020-12-15 08:27

I found this great module on within and downloaded it as a zip file. Once I extracted the zip file, i put the two modules inside the file(setup and the main one) on the modu

3条回答
  •  被撕碎了的回忆
    2020-12-15 09:02

    The cleanest and simplest way I have found is to use pip from within QPython console as in This Answer

    import pip
    pip.main(['install', 'networkx'])
    

提交回复
热议问题