After successfully install anaconda to manage the python environment on a Mac, conda command execution at the prompt returns: Ensure that the following is in .zshrc file.
Best way to export everything from Notion to Apple Notes?
I have been using notions for over a year. I have only been using the basic functions of notions. With recent updates from Apple Notes, I am experimenting the possibilities of replacing notion with Apple Notes. I am having trouble exporting everything that I have from notion to Apple note. I exported my notes in […]
pyODBC Apple M2 Chip : Symbol not found: _SQLAllocHandleApple M2 Chip :
If you get the above error, you will need to uninstall the pyODBC and than compile the pyODBC locally. Also make sure that you have install unixodbc driver.
Python Programming tidbits
The differences in tuple, dictionary, set and list List Comprehension Using slicing in matrix selection The differences in tuple, dictionary, set and list tuple : immutable , i.e. user cannot change the content of the tuple dictionary : accessible by key-value pair list : list of items set : non repeatable list Code Sample List […]
Basic Anaconda command prompt commands for various common tasks
Commands for managing virtual python environment Use the following commands via mac’s terminal application. Function Command Description Display % conda info To display information about the current anaconda installation List % conda env list To list all python environment setup in your computer. * sign refers to the default environment Create % conda create –name […]
tensorflow with Pycharm
I was trying to execute the sample code from Google tensorflow quick start for beginner on my Mac and I run into the ssl.SSLCertVerificationError. My Pycharm was setup to run all code in venv with Python 3.8 and the necessary tensorflow library setup. Error Message: ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local […]