“Jak skompilować Python” Kod odpowiedzi

skompiluj Python do PYC

import py_compile
py_compile.compile('yourFile.py')
# the compiled file will be saved as yourfile.pyc in a __pycache__ folder, which will be created the same folder as yourfile.py
Thoughtful Trout

Jak skompilować Python

python -m py_compile Main.py
Good Google Searcher

Kompilowanie kodu Pythona

import py_compile

py_compile.compile("mymodule.py")
Black Baboon

Kompilowanie kodu Pythona

import compileall

compileall.compile_dir("mylib", force=1)
Black Baboon

Odpowiedzi podobne do “Jak skompilować Python”

Pytania podobne do “Jak skompilować Python”

Więcej pokrewnych odpowiedzi na “Jak skompilować Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu