schemen / m2em

Manga to eManga
MIT License
51 stars 6 forks source link

Setup issues #28

Open ArcdoesMC opened 4 years ago

ArcdoesMC commented 4 years ago

@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.

schemen commented 4 years ago

Hi!

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))"

I'll have a look!

schemen commented 4 years ago

Regarding PyQt5 -> Pip does not provide ARM packges for that. You need to find a way to install it on ARM, altough I am not sure how to at the moment.