国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

Python腳本導(dǎo)出為exe程序的方法

瀏覽:34日期:2022-08-01 10:53:01

一.pyinstaller簡(jiǎn)介

pyinstaller將Python腳本打包成可執(zhí)行程序,使在沒(méi)有Python環(huán)境的機(jī)器上運(yùn)行

最新版是pyinstaller 3.1.1。支持python2.7和python3.3+。 可運(yùn)行在Windows,Mac和Linux操作系統(tǒng)下。 但它不是跨編譯的,也就是說(shuō)在Windows下用PyInstaller生成的exe只能運(yùn)行在Windows下,在Linux下生成的只能運(yùn)行在Linux下。

二.pyinstaller在windows下的安裝

使用命令pip install pyinstaller即可 在windows下,pyinstaller需要PyWin32的支持。當(dāng)用pip安裝pyinstaller時(shí)未找到PyWin32,會(huì)自動(dòng)安裝pypiwin32

Python腳本導(dǎo)出為exe程序的方法

Python腳本導(dǎo)出為exe程序的方法

出現(xiàn)Successfully installed pyinstaller-3.1.1 pypiwin32-219即表示安裝成功

三.打包

打包的app里并不包含任何源碼,但將腳本的.pyc文件打包了。

基本語(yǔ)法: pyinstaller options myscript.py

常用的可選參數(shù)如下:

?onefile 將結(jié)果打包成一個(gè)可執(zhí)行文件?onedir 將所有結(jié)果打包到一個(gè)文件夾中,該文件夾包括一個(gè)可執(zhí)行文件和可執(zhí)行文件執(zhí)行時(shí)需要的依賴文件(默認(rèn))?paths=DIR 設(shè)置導(dǎo)入路徑?distpath=DIR 設(shè)置將打包的結(jié)果文件放置的路徑?specpath=DIR 設(shè)置將spec文件放置的路徑?windowed 使用windows子系統(tǒng)執(zhí)行,不會(huì)打開(kāi)命令行(只對(duì)windows有效)?nowindowed 使用控制臺(tái)子系統(tǒng)執(zhí)行(默認(rèn))(只對(duì)windows有效)?icon=<FILE.ICO> 將file.ico添加為可執(zhí)行文件的資源(只對(duì)windows有效)

如pyinstaller --paths=“D:Queena” guess_exe.py

四.小實(shí)例(windows下)

寫好游戲文件guess_exe.py,代碼如下:

__author__ = ’zhou’# -*- coding:utf-8 -*-# 搖3次骰子,當(dāng)總數(shù)total,3<=total<=10時(shí)為小,11<=total<=18為大import randomimport timedef enter_stake(current_money): ’’’輸入小于結(jié)余的賭資及翻倍率,未考慮輸入type錯(cuò)誤的情況’’’ stake = int(input(’How much you wanna bet?(such as 1000):’)) rate = int(input('What multiplier do you want?你想翻幾倍?(such as 2):')) small_compare = current_money < stake * rate while small_compare == True: stake = int(input(’You has not so much money ${}!How much you wanna bet?(such as 1000):’.format(stake * rate))) rate = int(input('What multiplier do you want?你想翻幾倍?(such as 2):')) small_compare = current_money < stake * rate return stake,ratedef roll_dice(times = 3): ’’’搖骰子’’’ print(’<<<<<<<<<< Roll The Dice! >>>>>>>>>>’) points_list = [] while times > 0: number = random.randrange(1,7) points_list.append(number) times -= 1 return points_listdef roll_result(total): ’’’判斷是大是小’’’ is_big = 11 <= total <= 18 is_small = 3 <= total <= 10 if is_small: return ’Small’ elif is_big: return ’Big’def settlement(boo,points_list,current_money,stake = 1000,rate = 1): ’’’結(jié)余’’’ increase = stake * rate if boo: current_money += increase print(’The points are ’ + str(points_list) + ’ .You win!’) print(’You gained $’ + str(increase) + ’.You have $’ + str(current_money) + ’ now.’ ) else: current_money -= increase print(’The points are ’ + str(points_list) + ’ .You lose!’) print(’You lost $’ + str(increase) + ’.You have $’ + str(current_money) + ’ now.’ ) return current_moneydef sleep_second(seconds=1): ’’’休眠’’’ time.sleep(seconds)# 開(kāi)始游戲def start_game(): ’’’開(kāi)始猜大小的游戲’’’ current_money = 1000 print(’You have ${} now.’.format(current_money)) sleep_second() while current_money > 0: print(’<<<<<<<<<<<<<<<<<<<< Game Starts! >>>>>>>>>>>>>>>>>>>>’) your_choice = input(’Big or Small: ’) choices = [’Big’,’Small’] if your_choice in choices: stake,rate = enter_stake(current_money) points_list = roll_dice() total = sum(points_list) actual_result = roll_result(total) boo = your_choice == actual_result current_money = settlement(boo,points_list,current_money,stake,rate) else: print(’Invalid input!’) else: sleep_second() print(’Game Over!’) sleep_second(2)if __name__ == ’__main__’: start_game()

之后命令行,切換到guess_exe.py的目錄下, 輸入:

pyinstaller --onefile --nowindowed --icon='D:QueenaPyCharmProjectsdist1computer_three.ico' guess_exe.py

Python腳本導(dǎo)出為exe程序的方法Python腳本導(dǎo)出為exe程序的方法

就會(huì)在當(dāng)前文件下形成build文件夾、dist文件夾和.spec文件。 dist里就是guess_exe.exe可執(zhí)行文件。

[外鏈圖片轉(zhuǎn)存失敗(img-NSV511rc-1562767762570)(https://upload-images.jianshu.io/upload_images/6152595-56dc5aad9152513e.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)]

1、安裝pyinstaller(需要先安裝pip)、再:pip install pyinstaller

(由于我事先安裝了pyinstaller,為了方便就卸載了,不知道影不影響顯示。但安裝成功后會(huì)有“Successfully installed pyinstaller”的提示)

Python腳本導(dǎo)出為exe程序的方法

2、定位到pyinstaller.exe所在文件夾(一般再python下的“scripts”文件夾下)

(溫馨提示:再cmd下tab鍵又補(bǔ)全功能哦)

Python腳本導(dǎo)出為exe程序的方法

3、再添加上你要轉(zhuǎn)換的文件地址(兩者之間有空格)

pyinstaller.exe后面如果加上-F就是打包為一個(gè)exe文件(文件會(huì)比較大),如果不加就會(huì)有很多庫(kù)文件;加上-w就是打包為沒(méi)有cmd窗口的exe,不加運(yùn)行時(shí)就會(huì)出現(xiàn)cmd窗口。(加不加憑個(gè)人喜好)

Python腳本導(dǎo)出為exe程序的方法

4. 加-F的效果

Python腳本導(dǎo)出為exe程序的方法

不加-F

Python腳本導(dǎo)出為exe程序的方法

不加-w的效果

(加-w的話,就沒(méi)有后面的那個(gè)黑框了

Python腳本導(dǎo)出為exe程序的方法

1、-F指令

注意指令區(qū)分大小寫。這里是大寫。使用-F指令可以把應(yīng)用打包成一個(gè)獨(dú)立的exe文件,否則是一個(gè)帶各種dll和依賴文件的文件夾

Python腳本導(dǎo)出為exe程序的方法

2、-p指令

這個(gè)指令后面可以增加pyinstaller搜索模塊的路徑。因?yàn)閼?yīng)用打包涉及的模塊很多。這里可以自己添加路徑。不過(guò)經(jīng)過(guò)筆者測(cè)試,site-packages目錄下都是可以被識(shí)別的,不需要再手動(dòng)添加

Python腳本導(dǎo)出為exe程序的方法

補(bǔ)充:如何將python的.py文件轉(zhuǎn)換為可執(zhí)行的.exe文件。

首先,我寫了一個(gè)print(“hello,world”).py文件。命名為hello.py保存在我的電腦C盤的C:Usersly目錄下如圖所示。

ps:盡量選擇在這個(gè)文件夾下,如果選擇其他盤的文件夾下,生成的.exe的dist文件夾也會(huì)出現(xiàn)在這個(gè)c盤的路徑下,而且如果保存在其他盤下有時(shí)候還會(huì)出錯(cuò),不好用。

Python腳本導(dǎo)出為exe程序的方法 Python腳本導(dǎo)出為exe程序的方法

利用pip安裝python的工具庫(kù)pyinstaller。

pip install pyinstaller

安裝成功后

在命令窗口輸入:pyinstaller -F C:Userslyhello.py

注意 F 一定要大寫

然后就會(huì)在這個(gè)路徑下的dist文件夾下找到這和同名的hello.exe文件。

Python腳本導(dǎo)出為exe程序的方法

總結(jié)

到此這篇關(guān)于Python腳本導(dǎo)出為exe程序的方法的文章就介紹到這了,更多相關(guān)Python導(dǎo)出exe程序內(nèi)容請(qǐng)搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!

標(biāo)簽: Python 編程
相關(guān)文章:
主站蜘蛛池模板: 雷州市| 六盘水市| 泾源县| 安庆市| 泰安市| 广河县| 西昌市| 荥经县| 金阳县| 兰坪| 新营市| 湖州市| 米易县| 灌南县| 攀枝花市| 蒲城县| 阳信县| 常熟市| 余干县| 佳木斯市| 新化县| 漠河县| 隆尧县| 新竹县| 宁明县| 七台河市| 新巴尔虎左旗| 定日县| 罗甸县| 舟曲县| 东明县| 九寨沟县| 镇原县| 宜城市| 武胜县| 武清区| 吴江市| 合阳县| 乐山市| 昔阳县| 喀喇沁旗|