SkyWalker
SkyWalker

Reputation: 38

How do you check currently downloaded version and download latest version of SymPy?

I am currently using a windows computer and installed SymPy with pip install SymPy.

Upvotes: 0

Views: 147

Answers (1)

Matthew Ashley
Matthew Ashley

Reputation: 76

You can use pip list to show the names and versions of all currently installed packages. pip list --outdated will also show outdated packages including their version and the latest version available. To upgrade to the latest version of a package, use pip install --upgrade <package name>. To get more information on pip and the available commands view the pip documentation.

Upvotes: 2

Related Questions