windows平臺上安裝Biopython 1.73:
1.確定python已經(jīng)添加到環(huán)境中;如何確定:打開powershell 輸入python回車,進入python交互環(huán)境界面,如不報錯,即可。
2.安裝好pip模塊。
如果以上兩點都已經(jīng)check,運行下面代碼即可。
python -m pip install biopython
安裝完畢,進入python交互環(huán)境界面,輸入
import Bio
print(Bio.__version__)
如結果顯示為1.73(所安裝的版本),表明安裝成功。