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
@schemen
While trying to set this up on raspbian I've run into several issues, I have my pi set up to run python 3 whenever python is called. I'm a bit of a noob when it comes to this but here is what I have so far.
I had to run
git clone https://github.com/schemen/m2em.git && cd m2em
instead of the actual line provided because it keeps failing to authenticate
than when I try to run "virtualenv venv -p python3"
I get the error "bash: virtualenv: command not found"
I then run "pip install virtualenv" and it seems to install but it still gives me the same error code.
so deciding to skip the virtualization step since this is the only program I intend to run on this pi for the time being I then run
"pip install -r requirements.txt"
it then starts downloading everything with the exception being that it tells me in red
"Could not find a version that satisfies the requirement PyQt5>=5.6.0 (from KindleComicConverter==5.4.3->-r requirements.txt (line 7)) (from versions: )
No matching distribution found for PyQt5>=5.6.0 (from KindleComicConverter==5.4.3->-r requirements.txt (line 7))"
So I try to install PytQt5 with "pip install PyQt5"
and get
"Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
Collecting PyQt5
Could not find a version that satisfies the requirement PyQt5 (from versions: )
No matching distribution found for PyQt5"
I know this is a lot of errors but I've googled them and can't find anything. Thanks in advance.
The text was updated successfully, but these errors were encountered:
Thanks for the report! I have not installed/tested it on a raspi, I also don't know how it would perform during convertion.
I get the error "bash: virtualenv: command not found"
You can fix this by installing it: apt-get install python-virtualenv
"Could not find a version that satisfies the requirement PyQt5>=5.6.0 (from KindleComicConverter==5.4.3->-r requirements.txt (line 7)) (from versions: )
No matching distribution found for PyQt5>=5.6.0 (from KindleComicConverter==5.4.3->-r requirements.txt (line 7))"
@schemen
While trying to set this up on raspbian I've run into several issues, I have my pi set up to run python 3 whenever python is called. I'm a bit of a noob when it comes to this but here is what I have so far.
I had to run
git clone https://github.com/schemen/m2em.git && cd m2em
instead of the actual line provided because it keeps failing to authenticate
than when I try to run "virtualenv venv -p python3"
I get the error "bash: virtualenv: command not found"
I then run "pip install virtualenv" and it seems to install but it still gives me the same error code.
so deciding to skip the virtualization step since this is the only program I intend to run on this pi for the time being I then run
"pip install -r requirements.txt"
it then starts downloading everything with the exception being that it tells me in red
"Could not find a version that satisfies the requirement PyQt5>=5.6.0 (from KindleComicConverter==5.4.3->-r requirements.txt (line 7)) (from versions: )
No matching distribution found for PyQt5>=5.6.0 (from KindleComicConverter==5.4.3->-r requirements.txt (line 7))"
So I try to install PytQt5 with "pip install PyQt5"
and get
"Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
Collecting PyQt5
Could not find a version that satisfies the requirement PyQt5 (from versions: )
No matching distribution found for PyQt5"
I know this is a lot of errors but I've googled them and can't find anything. Thanks in advance.
The text was updated successfully, but these errors were encountered: