mirror of
https://github.com/spotipy-dev/spotipy.git
synced 2026-04-26 16:15:51 +03:00
[GH-ISSUE #703] python3 how to check which version spotipy is installed? also how to install old version? #416
Labels
No labels
api-bug
bug
dependencies
documentation
duplicate
enhancement
external-ide
headless-mode
implicit-grant-flow
invalid
missing-endpoint
pr-welcome
private-api
pull-request
question
spotipy3
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/spotipy#416
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @greeneryAO on GitHub (Jul 6, 2021).
Original GitHub issue: https://github.com/spotipy-dev/spotipy/issues/703
just curious on a mac terminal how can I check which version I have currently installed?
Also I want to stay on it, even though spotipy is moving to spotipy3 I'm happy with spotipy 2, I downloaded a bunch of old versions, how can I manually install the one I'm on if I get a new mac?
thank you.
@Peter-Schorn commented on GitHub (Jul 6, 2021):
Use
pip show spotipyto determine which version is currently installed. Usepip install spotipy --upgradeto upgrade to the latest release. Usepip install spotipy==2.18.0to install version 2.18.0. See here for more information.@greeneryAO commented on GitHub (Jul 6, 2021):
appreciate the help, I'm on 2.16.0 and things are working fine so I don't intend to change it, I downloaded the zip, can I later do
pip install spotipy==2.16.0, if I don't want to install 2.18.0 or version 3 later? where should the 2.16.0 directory be so it finds it?@Peter-Schorn commented on GitHub (Jul 6, 2021):
You don't need to manually download any zip files.
pip install spotipy==2.16.0installs spotipy from the python package index directly into a directory where all your scripts can find it.pip show spotipyshows you where spotipy is installed.@greeneryAO commented on GitHub (Jul 6, 2021):
oh I see, that will be perfect then, I thought I might have to point to directory, I downloaded a few old releases just in case but shouldn't be an issue if the python package index keeps old files, thanks for clarifying.
@dieser-niko commented on GitHub (May 1, 2024):
Closing as the issue seems to be resolved.