You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File "/usr/lib/python3.12/site-packages/wordcloud/wordcloud.py", line 35, in <module>
STOPWORDS = set(map(str.strip, open(os.path.join(FILE, 'stopwords')).readlines()))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
FileNotFoundError: [Errno 2] No such file or directory: '/usr/lib/python3.12/site-packages/wordcloud/stopwords'
quick fix, add these lines to MANIFEST.in:
include wordcloud/DroidSansMono.ttf
include wordcloud/stopwords
The text was updated successfully, but these errors were encountered:
I build and install word_cloud 1.9.3 with:
python -m build --wheel --no-isolation python -m installer dist/*.whl
and I got this error:
File "/usr/lib/python3.12/site-packages/wordcloud/wordcloud.py", line 35, in <module> STOPWORDS = set(map(str.strip, open(os.path.join(FILE, 'stopwords')).readlines())) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ FileNotFoundError: [Errno 2] No such file or directory: '/usr/lib/python3.12/site-packages/wordcloud/stopwords'
quick fix, add these lines to
MANIFEST.in
:The text was updated successfully, but these errors were encountered: