ไม่พบคำสั่ง Pyinstaller


3

(ฉันอยู่บน Linux และใช้ SuperUser เป็น Stackoverflow บอกให้ฉันไปที่นี่!)

ฉันต้องการใช้ pyinstaller ดังนั้นฉันจึงติดตามเอกสาร:

pip install pyinstaller  
pyinstaller my_script_name.py  

pip ติดตั้งพูดว่า:

Successfully installed altgraph-0.15 dis3-0.1.2 future-0.16.0 macholib-1.9 pefile-2017.11.5 pyinstaller-3.3.1 setuptools-39.0.1

แต่เมื่อฉันเรียกใช้ pyinstaller มันบอกว่า:

pyinstaller: command not found

ฉันลองเหมือนกันกับ pip3 ผลลัพธ์เดียวกัน


ลองpip show pyinstallerดู ควรให้ข้อมูลแก่คุณเมื่อติดตั้งไว้ จากนั้นตรวจสอบให้แน่ใจว่าคุณมีตำแหน่งในเส้นทางของคุณหากคุณต้องการโทรหาอย่างที่คุณทำ
Jaroslav Kucera

/home/yoran/.local/lib/python3.6/site-packages (pip3) หรือ /home/yoran/.local/lib/python2.7/site-packages (pip)
Yoran Jansen

@JaroslavKucera แต่ฉันไม่สามารถหาไฟล์ใด ๆ ที่ทำเครื่องหมายเป็น 'เปิดตัวฉันหรือเริ่มต้นได้
Yoran Jansen

คำตอบ:


1

1. ค้นหาว่า pyinstaller อยู่ที่ไหน

find / -name "pyinstaller"

ผลลัพธ์ดูเหมือนว่า

/usr/local/python3/bin/pyinstaller

2.cp ไปที่ / usr / bin / pyinstaller (โดยที่ linux ค้นหาคำสั่งอัตโนมัติ)

cp /usr/local/python3/bin/pyinstaller /usr/bin/pyinstaller3.cp 

จากนั้นคุณสามารถเรียกใช้ pyinstaller ได้!

ps หากคุณไม่ต้องการคัดลอกไฟล์คุณสามารถเรียกใช้ pyinstaller ได้โดยตรง

/usr/local/python3/bin/pyinstaller 

หวังว่ามันจะช่วย!

---------- UPDATE --------- ตรวจสอบ doc-> การตรวจสอบการติดตั้ง https://pyinstaller.readthedocs.io/th/stable/installation.html#verifying-the- การติดตั้ง


มากกว่าการคัดลอก simlink จะทำงาน
Baldrickk
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.