On the advice of spyder-ide.org
is used the 'Standalone Installer for macOS'.
This appears to be specific to macOS 10.15+ which I did not know. Spyder will not start and the Traceback mentions a frame "build for MacOS X 10.15". I only have macOS 10.13.
Two questions. (1) How can I uninstall this Spyder.app thoroughly? (2) Is there a better way to install - such as the standalone for 10.13?
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?