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
I use pipx to manage Python executables on my system and would like to use it to install Sclack. I tried running the following command in Pipx: pipx install --include-deps --spec git+https://github.com/haskellcamargo/sclack.git sclack which seemed to have worked, however, it installed Sclack as a binary in my path ~/.local/bin named app.py rather than sclack and when I attempt to run app.py (which is exposed on my path) I get the following errors:
Traceback (most recent call last):
File "/home/michael/.local/bin/app.py", line 14, in <module>
from sclack.components import Attachment, Channel, ChannelHeader, ChatBox, Dm
File "/home/michael/.local/pipx/venvs/sclack/lib/python3.7/site-packages/sclack/components.py", line 11, in <module>
from .markdown import MarkdownText
File "/home/michael/.local/pipx/venvs/sclack/lib/python3.7/site-packages/sclack/markdown.py", line 3, in <module>
from .store import Store
File "/home/michael/.local/pipx/venvs/sclack/lib/python3.7/site-packages/sclack/store.py", line 1, in <module>
from slackclient import SlackClient
ModuleNotFoundError: No module named 'slackclient'
The text was updated successfully, but these errors were encountered:
I use pipx to manage Python executables on my system and would like to use it to install Sclack. I tried running the following command in Pipx:
pipx install --include-deps --spec git+https://github.com/haskellcamargo/sclack.git sclack
which seemed to have worked, however, it installed Sclack as a binary in my path~/.local/bin
namedapp.py
rather thansclack
and when I attempt to runapp.py
(which is exposed on my path) I get the following errors:The text was updated successfully, but these errors were encountered: