Hi,
I have been following the tutorial here to install packages that my web application depends on.
I have created a new pipenv using:
mkvirtualenv ktfo --python=python3.5
I have then activated it using:
workon ktfo
Finally, I try to install the dependencies of the application using:
pip install -r requirements.txt
The list of packages runs through the terminal and it appears the installations have been successful. I then try to import some of the packages and the modules cannot be found.
Running pip list only shows the original packages. I managed to install Flask by running pip install flask, but other packages wont install properly (Keras).
What am I doing wrong?