example results :
runcell(0, '/Users/*/.spyder-py3/temp.py')
runfile('/Users/*/.spyder-py3/temp.py', wdir='/Users/*/.spyder-py3')
The ** are just to blank out username,
Conda Environment for Tensorflow-maxos(M1 Apple)
pip install spyder
ERROR: Could not find a version that satisfies the requirement pyqtwebengine<5.13 (from spyder) (from versions: 5.14.0, 5.15.0, 5.15.1, 5.15.2)
ERROR: No matching distribution found for pyqtwebengine<5.13 (from spyder)
Off topics:
I am trying to make save data in another rowdf = [1.6, 2.7, 3.4, 4.5]
new_df = pd.DataFrame(columns = [A, B, C, D])
I am tryingnew_df.iloc[0:1, 0:] = df
Its working in my Spyder, which python version is 3.8
A B C D
1.6 2.7 3.4 4.5
But in colab its producing NaN
value
A B C D
NaN NaN NaN NaN
colab python version is 3.6.
Can anyone tell me why it is happening? And how to solve it?