Skip to main content

Frequently Asked Questions (FAQ)

  • What's the assignment workflow?

  • How can I use Jupyter Notebook in Visual Studio Code?

  • Where do I find the instructor feedback on my submission

Common Python Errors

  • I got an error that a package is not found. What should I do?
    • Whenever you get an error that a package is not found, you'd want to install the missing package onto your virtual env.
      • If you're Poetry to manage your dependencies poetry add <package-name>
      • If you're PipEnv to manage your dependencies pipenv install <package-name>
      • If you're Pip to manage your dependencies pip install <package-name>