Python and MySQL

Installing package pip install mysql-connector-python In Anacoda the following packages were missing and had to be installed. pip install grin pip install distributed Verifying that the packages were installed in the correct python 🙂 . from distutils.sysconfig import...

Anaconda

Environments Create Creating en environment allows the user to define python version and custom packages conda create –name my_app package1 package2 conda create –name my_app python=2.7 package1 package2 Example: Create the environment my_app and install...