After checking other related threads I had to open this one. When trying to run this repository I am always getting the error:
Traceback (most recent call last): File "C:\Users\jjj\evrpogmrl\main.py", line 1, in <module>
from Environment import environment File "C:\Users\jjj\evrpogmrl\Environment.py", line 5, in <module>
from battery import lithium_ion_battery File "C:\Users\jjj\evrpogmrl\battery.py", line 1, in <module>
import numpy as np File "C:\Users\jjj\AppData\Local\Programs\Python\Python36\lib\site-packages\numpy\__init__.py", line 142, in <module>
from . import core File "C:\Users\jjj\AppData\Local\Programs\Python\Python36\lib\site-packages\numpy\core\__init__.py", line 23, in <module>
WinDLL(os.path.abspath(filename)) File "C:\Users\jjj\AppData\Local\Programs\Python\Python36\lib\ctypes\__init__.py", line 348, in __init__
self._handle = _dlopen(self._name, mode) OSError: [WinError 193] %1 ist keine zulässige Win32-Anwendung
I have python 3.6.2 64bit installed and installed every library via pip. Is there anything I am doing wrong? Should not be every library 64 bit? As there is tensorflow required, the pythoncode itself should be 64 bit aswell. If not, how can I check this in the future and what can I do about it now (as I would have to install tensorflow even though I am using 32bit python which is not supported by tensorflow. Futhermore pip install did not work on 32bit python).
Hope you guys can clarify my problems as I am really new to python and programming.