我最近开始学习python,我想知道是否可以将python代码(在pycharm中)转换为某种无需在其他计算机上即可运行IDE的应用程序(就像我们可以通过转换它们来运行Android应用程序一样)并在手机上使用它们)
答案 0 :(得分:0)
您可以采用的一种方法是,使用flask
,Django
之类的框架并将其托管。
第二,您可以使用pyinstaller
将python
脚本制作为Windows,Mac和Linux可执行文件
答案 1 :(得分:0)
对此可能有多个答案,但是一个答案是使用自动Py-To-Exe将python代码转换为可执行文件,这些代码可以在Windows中独立运行。
答案 2 :(得分:0)
使用Pyinstaller:
在Linux中(在Ubuntu上测试):
pyinstaller --onefile filename.py
默认情况下,pyinstaller加载所有模块,这会使文件更大。 为了避免这种情况,您可以排除类似这样的模块
pyinstaller --onefile --exclude matplotlib --exclude scipy --exclude pandas --exclude numpy filename.py
如果pyinstaller错过了您的模块,则可以这样导入
pyinstaller --onefile --hidden-import=module_name filename.py