0

I want to update to pyserial 2.6,I normally install using pip install pyserial,is there a pip command to install to a specific version

be_good_do_good
  • 4,311
  • 3
  • 28
  • 42
Ritz
  • 1,193
  • 6
  • 15
  • 26

1 Answers1

0
pip install pyserial==2.6

or you can as well use >= and <=

Also, try pip help install to get more help on pip installation options

be_good_do_good
  • 4,311
  • 3
  • 28
  • 42