0
我最初在miniconda(python3.6)中安裝了python。所以當我做pip install pyserial
時,它安裝了pyserial下的miniconda3/lib/python3.6/site-packages
Pyserial爲不同的python版本安裝
後來我也安裝了python2.7。我怎樣才能python2.7安裝pyserial(或至少告訴它使用上述pyserial版本)?
我最初在miniconda(python3.6)中安裝了python。所以當我做pip install pyserial
時,它安裝了pyserial下的miniconda3/lib/python3.6/site-packages
Pyserial爲不同的python版本安裝
後來我也安裝了python2.7。我怎樣才能python2.7安裝pyserial(或至少告訴它使用上述pyserial版本)?
如果您正在使用暢達/ miniconda你可以得到pyserial 3.4現在通過暢達鍛通道
要使用暢達運行安裝這個軟件包:
conda install -c conda-forge pyserial
使用'pip2'爲Python 2.7 – stovfl