You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've followed the steps in README to get the dependencies then when I ran the jupyter notebook Getting Started one, I got the following error. I guess this is because that intel-numpy is 1.15.1 which is different from the original numpy's version. Could you check and tell me the quick fix about this?
/home/norio0925/anaconda3/envs/reco-gym/bin/python /home/norio0925/Desktop/workspace/reco-gym/a.py
Traceback (most recent call last):
File "/home/norio0925/Desktop/workspace/reco-gym/a.py", line 1, in<module>
import gym, recogym
File "/home/norio0925/Desktop/workspace/reco-gym/recogym/__init__.py", line 1, in<module>
from .envs import env_0_args, env_1_args
File "/home/norio0925/Desktop/workspace/reco-gym/recogym/envs/__init__.py", line 1, in<module>
from .reco_env_v0 import RecoEnv0
File "/home/norio0925/Desktop/workspace/reco-gym/recogym/envs/reco_env_v0.py", line 3, in<module>
from .abstract import AbstractEnv, f, env_args
File "/home/norio0925/Desktop/workspace/reco-gym/recogym/envs/abstract.py", line 5, in<module>
import pandas as pd
File "/home/norio0925/anaconda3/envs/reco-gym/lib/python3.6/site-packages/pandas/__init__.py", line 22, in<module>
from pandas.compat.numpy import (
File "/home/norio0925/anaconda3/envs/reco-gym/lib/python3.6/site-packages/pandas/compat/numpy/__init__.py", line 21, in<module>"this version of pandas is incompatible with numpy < 1.15.4\n"
ImportError: this version of pandas is incompatible with numpy < 1.15.4
your numpy version is 1.15.1.
Please upgrade numpy to >= 1.15.4 to use this pandas version
The text was updated successfully, but these errors were encountered:
Description
I've followed the steps in README to get the dependencies then when I ran the jupyter notebook
Getting Started
one, I got the following error. I guess this is because thatintel-numpy
is 1.15.1 which is different from the originalnumpy
's version. Could you check and tell me the quick fix about this?Steps to install dependencies that I followed
# install conda env conda create -n reco-gym python=3.6 conda activate reco-gym pip install recogym==0.1.2.3
Spec of my machine
Error
The text was updated successfully, but these errors were encountered: