Forums

Trying to install python3-natsort module

Hi, please help.

I have written a web app locally on my own machine which I have uploaded to pythonanywhere this evening. The problem I am having is, when developeing locally, I installed a module called python3-natsort from the ubuntu software center. This module is not available on pythonanywhere. So, I set up a virtual environment using this: https://www.pythonanywhere.com/forums/topic/1432/#id_post_9917 I have tried to run pip3.4 install --user python3-natsort, easy_install-3.4 install --user python3-natsort and a bunch of variations on these commands but with no success. Is there anything else I can try to get this module installed?

The Ubuntu packages prefix the actual python package name with python3- so to install the pip package, you need

pip3.4 install --user natsort