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

前端 未结 3 1807
攒了一身酷
攒了一身酷 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:01

    Step1: Install QPython.

    Step2: Install AIPY for QPython.

    Step3: Then go to QPython-->QPYPI-->AIPY and install from there Numpy, SciPy, Matplotlib, openCV etc.

    0 讨论(0)
  • 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'])
    
    0 讨论(0)
  • 2020-12-15 09:03

    Extract the zip file to the site-packages folder. Find the qpyplus folder in that Lib/python3.2/site-packages extract here that's it.Now you can directly use your module from REPL terminal by importing it.

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