Hello,
after create a stand alone package, how and where should i put the python folder with installed libs?
How to config the path on code?
Other solutions? I prefer not install python on target machine.
or
or i move folder manually?
Thank
after create a stand alone package, how and where should i put the python folder with installed libs?
How to config the path on code?
Other solutions? I prefer not install python on target machine.
B4X:
Py.Initialize(Me, "Py")
Dim opt As PyOptions
opt.Initialize
Dim opt As PyOptions = Py.CreateOptions("D:\python\python.exe")
Log(opt)
Py.Start(opt)
Wait For Py_Connected(Success As Boolean)
If Success Then
Log("🚀 PyBridge avviato.")
Else
Log("❌ Errore avvio Python.")
Return
End If
or
B4X:
Dim localPythonDir As String = File.Combine(File.DirApp, "python")
Dim pyexe As String = File.Combine(localPythonDir, "python.exe")
Log(pyexe)
or i move folder manually?
Thank