Hey all, I'm hoping to get this project up and running and I'm starting from a fresh MacOS environment. I don't yet understand the toolchain necessary to do so.
Notes:
- I'm running Python 3.7, with
python aliased to python3.7 and pip aliased to pip3
I'm specifically:
- Beginning by installing Anaconda, which successfully installed
- verification on the CLI using
conda -V shows conda 4.6.11
- from the GUI of Anaconda-Navigator.app
- I also installed PyCharm with the Anaconda plugin
- Starting from the Todoist downloader, I run
pip install todoist-python
- no errors on installation
- I set up my credentials in
credentials.json
- I then try to view
todoist_downloader.ipynb
- in PyCharm, it only shows a JSON object due to it being the community edition
- through Anaconda-Navigator, I launch Jupyter Notebook, choose the
todoist_downloader.ipynb file, then get stuck.
- Jupyter Notebook says
ModuleNotFoundError: No module named 'todoist' when I attempt to run it.
conda install todoist doesn't work, but I did re-run pip install todoist-python to verify it was installed and used pip list | grep todoist to verify it was there.
What's the best path forward? I'm out of my Python depths 🐍 😄
Hey all, I'm hoping to get this project up and running and I'm starting from a fresh MacOS environment. I don't yet understand the toolchain necessary to do so.
Notes:
pythonaliased topython3.7andpipaliased topip3I'm specifically:
conda -Vshowsconda 4.6.11pip install todoist-pythoncredentials.jsontodoist_downloader.ipynbtodoist_downloader.ipynbfile, then get stuck.ModuleNotFoundError: No module named 'todoist'when I attempt to run it.conda install todoistdoesn't work, but I did re-runpip install todoist-pythonto verify it was installed and usedpip list | grep todoistto verify it was there.What's the best path forward? I'm out of my Python depths 🐍 😄