Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
install Pyserial
#1
I using Python 3.x , and trying using difference code to download / install pyserial. but still fail to install it.

pip install pyserial

python -m pip install pyserial
anyone install before , please kindly advice and help on this
Reply
#2
hi neeheng,buddy i think you should update pip by "python -m pip install –upgrade pip " this command ,then you install pyserial by your command.sometimes i had face this issue and i always update pip in cmd.
hope your problem solve by this and if not feel free to private message me.
Reply
#3
Thank Dev_nirwal,

i able to update the PIP and install Pyserial in cmd. but i still fail to import serial .
import time
import serial

ser = serial.Serial('COM6', 115200)
 
while True:
 value = ser.readline()
 print(value)
 time.sleep(0.5)
Error:
ModuleNotFoundError Traceback (most recent call last) <ipython-input-3-c45aee60da5c> in <module>() 1 import time ----> 2 import serial 3 4 ser = serial.Serial('COM6', 115200) 5 ModuleNotFoundError: No module named 'serial'
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How to install "pip install pyserial" Joni_Engr 2 2,634 Aug-09-2021, 08:35 AM
Last Post: Joni_Engr
  Failed attempt to install pyserial skeeve 4 7,200 Nov-07-2017, 05:08 PM
Last Post: snippsat

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020