mirror of
https://github.com/spotipy-dev/spotipy.git
synced 2026-04-27 08:35:49 +03:00
[GH-ISSUE #254] Module Spotipy does not exist #136
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#136
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 @timbirtles on GitHub (Feb 11, 2018).
Original GitHub issue: https://github.com/spotipy-dev/spotipy/issues/254
`Traceback (most recent call last):
File "C:/Users/Tims/Documents/Python/ss.py", line 2, in
import spotipy
ModuleNotFoundError: No module named 'spotipy'
if name == 'main':
max_tracks_per_call = 50
if len(sys.argv) > 1:
file = open(sys.argv[1])
else:
file = sys.stdin
tids = file.read().split()
`
@pl4nty commented on GitHub (Feb 11, 2018):
Did you run
pip install spotipy?@HuzefaMandvi commented on GitHub (Feb 20, 2018):
If using python3 make sure to run
pip3 install spotipy@mateusrangel commented on GitHub (Mar 20, 2018):
use
pip install spotipyorpip3 install spotipy(if your system default python isn't python3)you can check installed modules using
pip freeze@mikechen66 commented on GitHub (May 2, 2020):
I am pleased to notify you that the following command include both Python2 and Python3 environbment.
$ pip install spotipy
You do not need use the command
pip3 install spotify. The command ofpip3 that installs spotify is wrong and incurs the error of import spotipy while you use the Python3 environment.Please see the spotipy details as follows.
spotipy: https://github.com/joohoi/spotipy/tree/python3
@sameehaafr commented on GitHub (Jul 31, 2022):
I'm still having an issue with using spotipy ini jupyter notebook. I installed it exactly as mentioned about and get the same error
@stephanebruckert commented on GitHub (Jul 31, 2022):
This is possibly a common python issue unrelated with spotipy. Make sure you don't have another folder (maybe file?) in your project that's called spotipy.