Python Forum

Full Version: install Pyserial
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
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.
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'