There is at least one requirement that does not come with python, namely numpy. Create a requirements.txt file and add a line of the form numpy==1.18.1 (I used the version that Fener uses right now here). Check in a clean environment, for example, a clean Python virtual environment, that all necessary requirements with correct versions are inside requirements.txt. Packages can be installed from such a file by running
There is at least one requirement that does not come with python, namely
numpy
. Create arequirements.txt
file and add a line of the formnumpy==1.18.1
(I used the version that Fener uses right now here). Check in a clean environment, for example, a clean Python virtual environment, that all necessary requirements with correct versions are insiderequirements.txt
. Packages can be installed from such a file by running