แสดงบทความที่มีป้ายกำกับ Python Tips แสดงบทความทั้งหมด
แสดงบทความที่มีป้ายกำกับ Python Tips แสดงบทความทั้งหมด

26 พฤษภาคม 2562

Published พฤษภาคม 26, 2562 by with 0 comment

หาตำแหน่งที่ตั้ง site-packages ของ Python

หลาย ๆ คนอยากจะต้องการตั้งค่า path ให้ python แต่ไม่รู้ว่าจะหาตำแหน่งที่ตั้ง site-packages ของ Python ได้จากไหน ?
ผมได้ไปค้นเจอ สามารถใช้วิธีง่าย ๆ ดังนี้
>>> import site
>>> site.getusersitepackages()
'/home/user/.local/lib/python3.5/site-packages'

หาตำแหน่งที่ตั้ง site-packages ของ Python ในเครื่องเราคือ /home/user/.local/lib/python3.5/site-packages นั้นเอง
Read More

13 มีนาคม 2560

Published มีนาคม 13, 2560 by with 0 comment

เช็ค Python Implementation ว่าเป็น CPython , PyPy หรืออื่น ๆ

เราสามารถเช็ค Python Implementation ว่าเป็น CPython , PyPy หรืออื่น ๆ ได้ง่าย ๆ โดยใช้ไลบรารี platform ดังนี้
In [50]: import platform
In [52]: platform.python_implementation()
Out[52]: 'CPython'
Read More

25 กุมภาพันธ์ 2560

Published กุมภาพันธ์ 25, 2560 by with 0 comment

อยากร่วมพัฒนา core ภาษา Python ต้องทำอย่างไร

ถ้าคุณอยากร่วมพัฒนา core ภาษา Python สามารถทำได้ตามเอกสาร "Python Developer’s Guide" อ่านได้ที่ https://docs.python.org/devguide/index.html
Read More

5 กุมภาพันธ์ 2560

Published กุมภาพันธ์ 05, 2560 by with 0 comment

แปลง wheels กลับไปเป็น eggs

สำหรับท่านที่ยังคงใช้ Python เวชั่นเก่ากว่า 2.7 ที่ยังต้องการติดตั้งโมดูลด้วยไฟล์ eggs แต่โมดูลส่วนใหญ่ในปัจจุบันใช้ wheels
Read More

29 มกราคม 2560

Published มกราคม 29, 2560 by with 0 comment

คำแนะนำจาก Guido van Rossum เพื่อทำให้ Python เร็วขึ้น

คำแนะนำจาก Guido van Rossum เพื่อทำให้ Python เร็วขึ้น
Read More

5 มกราคม 2560

Published มกราคม 05, 2560 by with 0 comment

วิธีการเขียน unittest ใน Python แบบลัด

สวัสดีปีใหม่ 2560 ทุกท่านครับ หลังจากที่ผมได้ทำ PyThaiNLP จึงได้ศึกษาการเขียน unittest ใน Python เลยขอเล่าในบทความนี้ครับ
Read More