It can be tricky to setup a complete Python development environment on Windows. The easiest way to setup is to use anaconda which has built-in Python (also comes with many packages by default such as nltk, numpy, etc.) and use an IDE with it.
Using a local virtual environment (i.e. project_folder/environment_folder) // Put this into .vscode/settings.json { "python.pythonPath": "${workspaceFolder}/env_python3/bin/python" } [To be updated] |
Technical notes >