Python Forum

Full Version: pyserial/serial "has no attribute 'Serial' "
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hi there ! glad to discover this forum.

first, i am a beginner, i want to learn Python etc.

i was typing this program :

import serial 
serial_port = serial.Serial(port = "COM3", baudrate = 9600)
serial_port.readline()
and i get this error code :

Error:
File "c:\Users\Mérill\Desktop\pytharduino2\ardseri.py3", line 2, in <module> serial_port = serial.Serial(port = "COM3", baudrate = 9600) ^^^^^^^^^^^^^ AttributeError: module 'serial' has no attribute 'Serial'
i tried to reinstall the pyserial library, uninstall the serial library,

i tried the method
from serial import Serial


it does not help. i have an other error code

Error:
File "c:\Users\Mérill\Desktop\pytharduino2\ardseri.py3", line 1, in <module> from serial import Serial ^^^^^^^^^^^^^^^^^^^^^^^^^ ImportError: cannot import name 'Serial' from 'serial' (unknown location)
so i tried a lot of different common solutions to fix this problem. But i am stuck Sad

i am using Python3.x
This seems to work for me. Do get an error because I do not have a COM3 port. I'm on a linux os

from serial import Serial
serial_port = Serial(port='COM3', baudrate=9600)
How did you reinstall the pyserial library?

Please show entire error trace. I would also like to know how you are running the program. Command line? IDE (if so, which)?

My first guess is you are not importing pyserial in the Python you are using to run the program. Are you using a virtual environment? Did you activate the environment before using pip install (assuming you used pip install)?
(Aug-23-2023, 06:28 PM)deanhystad Wrote: [ -> ]How did you reinstall the pyserial library?

Please show entire error trace. I would also like to know how you are running the program. Command line? IDE (if so, which)?

My first guess is you are not importing pyserial in the Python you are using to run the program. Are you using a virtual environment? Did you activate the environment before using pip install (assuming you used pip install)?

yes i did reinstall. Several times

File "c:\Users\Mérill\Desktop\pytharduino2\ardseri.py3", line 2, in <module>
    serial_port = serial.Serial(port = "COM3", baudrate = 9600)
                  ^^^^^^^^^^^^^
AttributeError: module 'serial' has no attribute 'Serial'
(Aug-23-2023, 06:30 PM)gowb0w Wrote: [ -> ]
(Aug-23-2023, 06:28 PM)deanhystad Wrote: [ -> ]How did you reinstall the pyserial library?

Please show entire error trace. I would also like to know how you are running the program. Command line? IDE (if so, which)?

My first guess is you are not importing pyserial in the Python you are using to run the program. Are you using a virtual environment? Did you activate the environment before using pip install (assuming you used pip install)?

yes i did reinstall. Several times

File "c:\Users\Mérill\Desktop\pytharduino2\ardseri.py3", line 2, in <module>
    serial_port = serial.Serial(port = "COM3", baudrate = 9600)
                  ^^^^^^^^^^^^^
AttributeError: module 'serial' has no attribute 'Serial'

sorry i'm tired, i posted the last reply without thinking Big Grin

i did reinstall several times pyserial

and the error message is this one, i have nothing else.

Error:
File "c:\Users\Mérill\Desktop\pytharduino2\ardseri.py3", line 2, in <module> serial_port = serial.Serial(port = "COM3", baudrate = 9600) ^^^^^^^^^^^^^ AttributeError: module 'serial' has no attribute 'Serial'
ok, i found a solution :

simply i reinstalled python on my computer 8D

made some restarts between uninstall and reinstall

and the error message does not come anymore.
Now we'll never know what the problem was.

My guess is still that you installed pyserial in one Python and used a different Python to run your program. This is pretty common. What are you using to write your Python programs? How do you install python modules? How do you run your programs? Your error is related to some procedure that you did incorrectly. It will reappear.
Maybe there was a file named serial.py next to your script. In this case, Python imports this instead from site-packages.
(Aug-23-2023, 08:10 PM)deanhystad Wrote: [ -> ]Now we'll never know what the problem was.

My guess is still that you installed pyserial in one Python and used a different Python to run your program. This is pretty common. What are you using to write your Python programs? How do you install python modules? How do you run your programs? Your error is related to some procedure that you did incorrectly. It will reappear.

i'm using Visual studio code. but i tried with python shell and i had the same problem.
(Aug-24-2023, 07:18 AM)DeaD_EyE Wrote: [ -> ]Maybe there was a file named serial.py next to your script. In this case, Python imports this instead from site-packages.

ah yes, i thought of it. but i checked and it was not the case.
Pages: 1 2