Open CassiusVonthill opened 5 years ago
I just had the same problem and came here to report the issue, but I see someone already beat me to the punch.
Here's the fix:
clone the repo and replace "discord.py==1.0.0a"
with "discord.py==1.0.1"
and
dependency_links=['https://github.com/Rapptz/discord.py/archive/rewrite.zip#egg=discord.py-1.0.0a'],
with dependency_links=['https://github.com/Rapptz/discord.py/archive/rewrite.zip#egg=discord.py-1.0.1'],
in setup.py
and
discord.py==1.0.0a
with discord.py==1.0.1
in requirements.txt
Unfortunately using pip3 to install dline fails with the 1.0.0a version issue.
@kwadroke Could you possibly make a PR for this? That way @NatTupper could easily implement the fixes. Thank you for the tips!
Hello,
I'm trying to install the project from pip and I'm getting two issues that conflict with your installation instructions.
First, when trying to run
pip3 install --user --process-dependency-link dline
I'm told there isn't a--procss-dependency-link
param allowed.Second:
I'm running this in a fresh
python:3.7-slim
docker container.I'm willing to help debug, but I've run into the discord dependency issue for a bit of time as I've been lurking on this repo for several months.