How do I update a Python package?

后端 未结 12 2225
半阙折子戏
半阙折子戏 2020-11-29 15:47

I\'m running Ubuntu 9:10 and a package called M2Crypto is installed (version is 0.19.1). I need to download, build and install the latest version of the M2Crypto package (0.

12条回答
  •  南方客
    南方客 (楼主)
    2020-11-29 16:03

    Open Command prompt or terminal and use below syntax

    pip install --upgrade [package]==[specific version or latest version]
    

    For Example

    pip install --upgrade numpy==1.19.1
    

提交回复
热议问题