I've (partially) successfully installed my Flask application. When I call init.py via SSH, it fires up and throws the error Which is to be expected, as I haven't installed that yet. As I can't operate as root, how can I install the dependancies that my Flask application has? TIA asked 13 Jan '15, 23:38 Ben Mayo |
You can install packages with For the MySQL connector, I was able to install this from PyPI (using its external link) as follows:
If your Flask application uses a virtual environment, you could install this package into your virtualenv instead of into your main account by activating your application's virtualenv first. In that case, you wouldn't use the " Hope that helps! answered 14 Jan '15, 01:59 ryans ♦♦ Thanks ryans, ran that, still get the error
(16 Jan '15, 19:47)
Ben Mayo
|