Question with nimpy

2021-07-05 Thread miran
> 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

Question with nimpy

2021-07-05 Thread gracec
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?

Question with nimpy

2021-06-30 Thread Clonk
Try : `pip install pandas`. You probably don't have pandas installed on your Python environment. Your example runs fine.

Question with nimpy

2021-06-29 Thread stbalbach
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}