1. I am new to Meraki and trying to learn via the tutorials available on Developers.meraki.com. 2. I am on a MacAir and navigated to Home / Build / Automation with Dashboard API 3. The steps listed are below. The install is failing on step #4 with the error message " pip3 install --upgrade requests -bash: pip3: command not found What should I do? thanks For macOS users: Install Homebrew first, if not already present, in terminal: ruby - e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" Install Python 3.6 brew install pyenv Install PyEnv pyenv install 3.6 . 5 Install the requests module pip3 install - - upgrade requests Install Dashboard API module pip3 install - - upgrade meraki To make sure your installation is successful, launch Python python3 Now you should see the >> > input, and you can interact with Meraki with a request for the list of organizations from meraki import meraki
meraki . myorgaccess ( 'e24759c28edd1d97715a6ba9ea8bc679c5d2706b' ) You should see similar results being returned: { 'id' : 578149602163687854 , 'name' : 'Public API Lab' }
... View more