curseDownloader
curseDownloader copied to clipboard
"No module called 'appdirs'"
Currently using Python 3.5.0 and attempting to download the Anti-Material Energy pack.
C:\Users\kids>C:\Users\kids\Desktop\Python\python.exe C:\Users\kids\Desktop\Games\Minecraft\curseDownloader-master\downloader.py C:\Users\kids\Desktop\manifest.json Traceback (most recent call last): File "C:\Users\kids\Desktop\Games\Minecraft\curseDownloader-master\downloader.py", line 4, in <module> import appdirs ImportError: No module named 'appdirs'
You're missing the required module. Use pip to install the appdirs, and probably the requests module if you're missing that too.
I've installed pip, and I'm trying to download appdirs from here using pip, but if gives an error saying that it can't read the format of a file.
I used the command line to install it, via
python -m pip install appdirs
I don't use python, so I don't know why it fails for you.
Try using pip3 instead of pip, considering this uses python3.4.
The readme has been updated to include linux setup - is this still an issue?
If you have python 3 and pip3 already:
pip3 install appdirs requests
It would be neat to have a requirements.txt or whatever.
Is requests an actual requirement? I didn't need to install it.
I actually had this exact same problem. I came here to find the solution, but I found a solution myself. instead of calling it with python call it as python3, which I guess makes sense, as appdirs is only installed for python3, so that is why it is telling you the module doesn't exits