Actually, I wanted to create my first django project. After I did some coding in the cmd then I opened the code using visual studio code. I selected the python interpreter on the status bar, then I changed it to the python interpreter installed in my digital environment. After that, I got message that linter pylint is not installed. After I installed that, these errors occurred.
Asked
Active
Viewed 2,823 times
2
-
Does this answer your question? [.ps1 cannot be loaded because the execution of scripts is disabled on this system](https://stackoverflow.com/questions/16460163/ps1-cannot-be-loaded-because-the-execution-of-scripts-is-disabled-on-this-syste) – funie200 Oct 09 '20 at 12:08
-
Maybe [this](https://stackoverflow.com/questions/30604952/pip-default-behavior-conflicts-with-virtualenv) – RandomB Oct 13 '20 at 12:56
1 Answers
-1
As described in this issue, you have to set "global module installation" to be true.
You can do that from File > Preferences > Settings:
HsnVahedi
- 1,031
- 1
- 11
- 26
-
This is a terrible workaround. The whole point of these tools is to avoid installing globally – Martin May 08 '22 at 04:48