> Hi, I'm getting this error and my NumPy and Pandas run fine in my python
> files in the same environment. Does nimpy check for installations in a
> specific path?
Wild guess:
The Python you use to run numpy and pandas is not the same Python nimpy uses.
(System python vs user python, or somet
Hi, I'm getting this error and my NumPy and Pandas run fine in my python files
in the same environment. Does nimpy check for installations in a specific path?
Try : `pip install pandas`.
You probably don't have pandas installed on your Python environment. Your
example runs fine.
Given this, importing "numpy" works but "pandas" does not:
import nimpy/nimpy
let np = pyImport("numpy")
let a = np.mean([1, 2, 3])
let f = np.sin(a)
echo "numpy check"
echo f
let pd = pyImport("pandas")
let df_temp = pd.DataFrame({"A": 1, "B": 2}