What do square brackets mean in pip install?
The syntax that you are using is: pip install “project[extra]” In your case, you are installing the splinter package which has the added support for django. The square brackets ([]) are not specific syntax, just convention. Really, you are installing the package named: “splinter[django]”. An explanation from @chetner: The command pip install splinter django would … Read more