Skip to content

VS Code IDE

Daniel L. Young, PhD edited this page Mar 5, 2020 · 2 revisions

Visual Studio Code as Primary IDE

Visual Studio Code combines the simplicity of a source code editor with powerful developer tooling, like IntelliSense code completion and debugging. First and foremost, it is an editor that gets out of your way. The delightfully frictionless edit-build-debug cycle means less time fiddling with your environment, and more time executing on your ideas. In addition, built in linting tools, e.g., pycodestyle, pydocstyle, pylint, flake8, and other PEP 8 and PEP 257 are fully integrated in the tool.

Prerequisites for Linux or Mac OSX Users

REFERENCE: https://code.visualstudio.com/docs/python/tutorial-django

  1. Change Directory: cd ~/ExistingData/FoodWaste/FoodWaste
  2. Create virtual env: python -m pip install django
  3. In new Terminal Window: source env/bin/activate
  4. Activate VM: django-admin startproject FoodWaste
  5. Verify VM: python manage.py runserver
  6. Ctrl+click the http://127.0.0.1:8000/

Recommended Lint Tools