Reputation: 38
I am currently using a windows computer and installed SymPy with pip install SymPy.
Upvotes: 0
Views: 147
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